Major new version #2

Merged
LeoVasanko merged 86 commits from vol002 into main 2025-08-26 05:58:24 +01:00
Showing only changes of commit 407e87e0f9 - Show all commits

View File

@ -1,10 +1,5 @@
import { defineStore } from 'pinia'
import {
toLocalString,
fromLocalString,
getLocaleFirstDay,
getLocaleWeekendDays,
} from '@/utils/date'
import { toLocalString, fromLocalString, getLocaleWeekendDays } from '@/utils/date'
const MIN_YEAR = 1900
const MAX_YEAR = 2100
@ -19,7 +14,7 @@ export const useCalendarStore = defineStore('calendar', {
select_days: 1000,
min_year: MIN_YEAR,
max_year: MAX_YEAR,
first_day: getLocaleFirstDay(),
first_day: 1, // Force Monday as week start
},
}),