vue-datepicker-next
vue-datepicker-next copied to clipboard
[Question] Can I change my week selection from monday to saturday
Vue-datepicker-next version: 1.0.3 Vue version: 3.2.45 Browser: Chrome 114.0.5735.110
Can I change my week selection from monday to saturday. Default is from sunday to saturday ?
Vue-datepicker-next version: 1.0.3 Vue version: 3.2.45 Browser: Chrome 114.0.5735.110
Can I change my week selection from monday to saturday. Default is from sunday to saturday ?
Use
formatLocale: {
firstDayOfWeek: 1,
},
Vue-datepicker-next version: 1.0.3 Vue version: 3.2.45 Browser: Chrome 114.0.5735.110
Can I change my week selection from monday to saturday. Default is from sunday to saturday ?
Hey! I found solution. @goshku is wrong.
You need use code below:
const currentLocale = useI18n().locale.value // or 'en' hardcode, eg.
const datePickerLocale = DatePicker.locale(currentLocale)
datePickerLocale.formatLocale.firstDayOfWeek = 1
DatePicker.locale(currentLocale, datePickerLocale)
and use Datepicker as usual in your code 😉