fix: delete month parameter on onMonthSelect
parent
fa42242e15
commit
e590ce7aa3
|
@ -255,7 +255,7 @@
|
||||||
v-for="(m, i) of monthPickerValues"
|
v-for="(m, i) of monthPickerValues"
|
||||||
:key="m"
|
:key="m"
|
||||||
v-ripple
|
v-ripple
|
||||||
@click="onMonthSelect($event, { month: m, index: i })"
|
@click="onMonthSelect($event, i)"
|
||||||
@keydown="onMonthCellKeydown($event, { month: m, index: i })"
|
@keydown="onMonthCellKeydown($event, { month: m, index: i })"
|
||||||
:class="cx('month', { month: m, index: i })"
|
:class="cx('month', { month: m, index: i })"
|
||||||
v-bind="
|
v-bind="
|
||||||
|
@ -1672,7 +1672,7 @@ export default {
|
||||||
clearInterval(this.timePickerTimer);
|
clearInterval(this.timePickerTimer);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
onMonthSelect(event, { month, index }) {
|
onMonthSelect(event, index) {
|
||||||
if (this.view === 'month') {
|
if (this.view === 'month') {
|
||||||
this.onDateSelect(event, { year: this.currentYear, month: index, day: 1, selectable: true });
|
this.onDateSelect(event, { year: this.currentYear, month: index, day: 1, selectable: true });
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue