Skip to content

Commit 4943867

Browse files
authored
Select: fix select filterable bug (#17494)
1 parent 19f25ba commit 4943867

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/select/src/select.vue

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,12 @@
8383
:tabindex="(multiple && filterable) ? '-1' : null"
8484
@focus="handleFocus"
8585
@blur="handleBlur"
86-
@keyup.native="debouncedOnInputChange"
86+
@input="debouncedOnInputChange"
8787
@keydown.native.down.stop.prevent="navigateOptions('next')"
8888
@keydown.native.up.stop.prevent="navigateOptions('prev')"
8989
@keydown.native.enter.prevent="selectOption"
9090
@keydown.native.esc.stop.prevent="visible = false"
9191
@keydown.native.tab="visible = false"
92-
@paste.native="debouncedOnInputChange"
9392
@mouseenter.native="inputHovering = true"
9493
@mouseleave.native="inputHovering = false">
9594
<template slot="prefix" v-if="$slots.prefix">

0 commit comments

Comments
 (0)