sync date-picker from v4.4.0

This commit is contained in:
rhyme 2020-12-25 16:39:41 +08:00
parent d7e0b79a2e
commit 24a9e013c6
3 changed files with 5 additions and 3 deletions

View file

@ -40,7 +40,9 @@ export default {
}, },
}, },
methods: { methods: {
handleClick (cell) { handleClick (cell, e) {
e.stopPropagation();
if (cell.disabled || cell.type === 'weekLabel') return; if (cell.disabled || cell.type === 'weekLabel') return;
const newDate = new Date(clearHours(cell.date)); const newDate = new Date(clearHours(cell.date));

View file

@ -3,7 +3,7 @@
<span <span
:class="getCellCls(cell)" :class="getCellCls(cell)"
v-for="cell in cells" v-for="cell in cells"
@click="handleClick(cell)" @click="handleClick(cell, $event)"
@mouseenter="handleMouseMove(cell)" @mouseenter="handleMouseMove(cell)"
> >

View file

@ -3,7 +3,7 @@
<span <span
:class="getCellCls(cell)" :class="getCellCls(cell)"
v-for="cell in cells" v-for="cell in cells"
@click="handleClick(cell)" @click="handleClick(cell, $event)"
@mouseenter="handleMouseMove(cell)" @mouseenter="handleMouseMove(cell)"
> >
<em>{{ cell.date.getFullYear() }}</em> <em>{{ cell.date.getFullYear() }}</em>