From 50094a604f32d00ceb784a3fbf07c82c502faca2 Mon Sep 17 00:00:00 2001 From: kazuya kawaguchi Date: Tue, 29 Dec 2015 17:40:58 +0900 Subject: [PATCH] fix(forms): fix typo --- docs/en/forms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/forms.md b/docs/en/forms.md index 83b5210c1..f35aab900 100644 --- a/docs/en/forms.md +++ b/docs/en/forms.md @@ -6,7 +6,7 @@ When using Vuex in strict mode, it could be a bit tricky to use `v-model` on a p ``` -Assuming `obj` is a computed property that returns an Object from the store, the `v-model` here will attempt to directly mutate `obj.message` when the user types in the input. In strict mode, this will result in en error because the mutation is not performed inside an explicit Vuex mutation handler. +Assuming `obj` is a computed property that returns an Object from the store, the `v-model` here will attempt to directly mutate `obj.message` when the user types in the input. In strict mode, this will result in an error because the mutation is not performed inside an explicit Vuex mutation handler. The "Vuex way" to deal with it is binding the ``'s value and call an action on the `input` or `change` event: