diff --git a/src/v2/guide/forms.md b/src/v2/guide/forms.md index d8f35c02e3..ff5e089bda 100644 --- a/src/v2/guide/forms.md +++ b/src/v2/guide/forms.md @@ -12,6 +12,8 @@ You can use the `v-model` directive to create two-way data bindings on form inpu

For languages that require an [IME](https://en.wikipedia.org/wiki/Input_method) (Chinese, Japanese, Korean etc.), you'll notice that `v-model` doesn't get updated during IME composition. If you want to cater for these updates as well, use `input` event instead.

+

Due to the way `v-model` handles event listeners on Android the event is not triggered until the autocomplete item is selected. Use `v-bind` and `v-on:input` instead of `v-model` to achieve the desired result.

+ ### Text ``` html