diff --git a/src/guide/forms.md b/src/guide/forms.md index 6b2c7a53e1..7eabf9826f 100644 --- a/src/guide/forms.md +++ b/src/guide/forms.md @@ -16,7 +16,7 @@ You can use the `v-model` directive to create two-way data bindings on form inpu ::: tip Note -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. +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 respond to these updates as well, use an `input` event listener and `value` binding instead of using `v-model`. ::: ### Text