1π
β
Iβve ran into this issue before.
It seems that on certain devices, the v-model
waits for a change
event, instead of an input
one.
Apparently, itβs to do with the input method editor (IME) for the specific device.
You can check a discussion about this at https://github.com/vuejs/core/issues/5580
The workaround is to simply bind the input field with value
and listen for the input
event manually, e.g.
<input
type="text"
class="input"
:value="searchTerm"
@input="(e) => searchTerm = e.target.value"
placeholder=" "
/>
π€BoBch27
Source:stackexchange.com