compute calendar so we react on showWeekNumbers changes

fixes #3277
This commit is contained in:
Sergio Crisostomo 2018-04-06 08:27:31 +02:00
parent 309912df0c
commit 5ca5a6eb98

View file

@ -36,10 +36,8 @@
}, },
}, },
data () { data () {
const weekStartDay = Number(this.t('i.datepicker.weekStartDay'));
return { return {
prefixCls: prefixCls, prefixCls: prefixCls,
calendar: new jsCalendar.Generator({onlyDays: !this.showWeekNumbers, weekStart: weekStartDay})
}; };
}, },
computed: { computed: {
@ -51,6 +49,10 @@
} }
]; ];
}, },
calendar(){
const weekStartDay = Number(this.t('i.datepicker.weekStartDay'));
return new jsCalendar.Generator({onlyDays: !this.showWeekNumbers, weekStart: weekStartDay});
},
headerDays () { headerDays () {
const weekStartDay = Number(this.t('i.datepicker.weekStartDay')); const weekStartDay = Number(this.t('i.datepicker.weekStartDay'));
const translatedDays = ['sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'].map(item => { const translatedDays = ['sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'].map(item => {