sync date-picker from v4.4.0
This commit is contained in:
parent
d7e0b79a2e
commit
24a9e013c6
3 changed files with 5 additions and 3 deletions
|
@ -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));
|
||||||
|
|
||||||
|
|
|
@ -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)"
|
||||||
|
|
||||||
>
|
>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Add table
Reference in a new issue