vue-datepicker-next icon indicating copy to clipboard operation
vue-datepicker-next copied to clipboard

[Question] Can I change my week selection from monday to saturday

Open minhchau2605 opened this issue 1 year ago • 2 comments

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 ?

minhchau2605 avatar Jun 13 '23 07:06 minhchau2605

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,
      },

goshku avatar Sep 20 '23 23:09 goshku

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 😉

deevanych avatar Nov 02 '23 15:11 deevanych