mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
@@ -150,7 +150,6 @@
|
||||
spellcheck="false"
|
||||
type="text"
|
||||
:name="name"
|
||||
:unselectable="expanded ? 'on' : undefined"
|
||||
@focus="handleFocus"
|
||||
@blur="handleBlur"
|
||||
@input="onInput"
|
||||
@@ -161,7 +160,7 @@
|
||||
@keydown.down.stop.prevent="onKeyboardNavigate('forward')"
|
||||
@keydown.enter.stop.prevent="onKeyboardSelect"
|
||||
@keydown.esc.stop.prevent="handleEsc"
|
||||
@keydown.delete.stop="handleDel"
|
||||
@keydown.delete.stop.prevent="handleDel"
|
||||
@click.stop="toggleMenu"
|
||||
/>
|
||||
<span
|
||||
|
||||
@@ -152,12 +152,11 @@
|
||||
aria-haspopup="listbox"
|
||||
@focus="handleFocus"
|
||||
@blur="handleBlur"
|
||||
@keydown.down.prevent="navigateOptions('next')"
|
||||
@keydown.up.prevent="navigateOptions('prev')"
|
||||
@keydown.esc="handleEsc"
|
||||
@keydown.down.stop.prevent="navigateOptions('next')"
|
||||
@keydown.up.stop.prevent="navigateOptions('prev')"
|
||||
@keydown.esc.stop.prevent="handleEsc"
|
||||
@keydown.enter.stop.prevent="selectOption"
|
||||
@keydown.delete.stop="deletePrevTag"
|
||||
@keydown.tab="expanded = false"
|
||||
@keydown.delete.stop.prevent="deletePrevTag"
|
||||
@compositionstart="handleCompositionStart"
|
||||
@compositionupdate="handleCompositionUpdate"
|
||||
@compositionend="handleCompositionEnd"
|
||||
|
||||
Reference in New Issue
Block a user