Skip to content

Commit 066edb2

Browse files
committed
fix(vuetify): select click event
1 parent 160c0f6 commit 066edb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vuetify/src/CronEditor.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
<template #selection>
2121

2222
</template>
23-
<template #item="{item, attrs, on}">
24-
<div v-bind="attrs" v-on="on">{{item.text}}</div>
23+
<template #item="{item, attrs}">
24+
<v-list-item-title v-bind="attrs">{{item.text}}</v-list-item-title>
2525
</template>
2626
</v-select>
2727
</v-col>

0 commit comments

Comments
 (0)