We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19f25ba commit 4943867Copy full SHA for 4943867
packages/select/src/select.vue
@@ -83,13 +83,12 @@
83
:tabindex="(multiple && filterable) ? '-1' : null"
84
@focus="handleFocus"
85
@blur="handleBlur"
86
- @keyup.native="debouncedOnInputChange"
+ @input="debouncedOnInputChange"
87
@keydown.native.down.stop.prevent="navigateOptions('next')"
88
@keydown.native.up.stop.prevent="navigateOptions('prev')"
89
@keydown.native.enter.prevent="selectOption"
90
@keydown.native.esc.stop.prevent="visible = false"
91
@keydown.native.tab="visible = false"
92
- @paste.native="debouncedOnInputChange"
93
@mouseenter.native="inputHovering = true"
94
@mouseleave.native="inputHovering = false">
95
<template slot="prefix" v-if="$slots.prefix">
0 commit comments