mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-10 07:52:23 +03:00
Replace v-model with :value since it doesn't work on android (#792)
This commit is contained in:
@@ -325,7 +325,7 @@
|
||||
|
||||
<input
|
||||
ref="search"
|
||||
v-model="search"
|
||||
:value="search"
|
||||
@keydown.delete="maybeDeleteValue"
|
||||
@keyup.esc="onEscape"
|
||||
@keydown.up.prevent="typeAheadUp"
|
||||
@@ -334,6 +334,7 @@
|
||||
@keydown.tab="onTab"
|
||||
@blur="onSearchBlur"
|
||||
@focus="onSearchFocus"
|
||||
@input="search = $event.target.value"
|
||||
type="search"
|
||||
class="form-control"
|
||||
:autocomplete="autocomplete"
|
||||
|
||||
Reference in New Issue
Block a user