Skip to content

Commit

Permalink
Replace v-model with v-on:input and v-bind:value to fix issue with au…
Browse files Browse the repository at this point in the history
…tocomplete not showing on mobile devices that use text auto prediction
  • Loading branch information
brthiess committed Apr 27, 2020
1 parent 6feca77 commit a0b9d51
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Autocomplete.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@

<div class="autocomplete__inputs">
<input
v-model="display"
v-bind:value="display"
v-on:input="display=$event.target.value"
:placeholder="placeholder"
:disabled="disableInput"
:maxlength="maxlength"
Expand Down

0 comments on commit a0b9d51

Please sign in to comment.