2
0
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:
Bart Vosman
2019-03-22 18:54:21 +01:00
committed by Jeff Sagal
parent e76e3c966b
commit 743711a8d6
+2 -1
View File
@@ -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"