From 70e91bc1c7bfb1cbbb47293a3dcaf9e388fd9272 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Ram=C3=ADrez?= <45177590+Bosphoramus@users.noreply.github.com> Date: Wed, 23 Mar 2022 14:59:01 +0100 Subject: [PATCH] Typo Just fixing a typo --- src/guide/essentials/forms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/essentials/forms.md b/src/guide/essentials/forms.md index bbe88056a1..dfa883833a 100644 --- a/src/guide/essentials/forms.md +++ b/src/guide/essentials/forms.md @@ -389,7 +389,7 @@ But sometimes we may want to bind the value to a dynamic property on the current false-value="no" /> ``` -`true-value` and `false-value` are Vue-specific attributes that only works with `v-model`. Here the `toggle` property's value will be set to `'yes'` when the box is checked, and set to `'no'` when unchecked. You can also bind them to dynamic values using `v-bind`: +`true-value` and `false-value` are Vue-specific attributes that only work with `v-model`. Here the `toggle` property's value will be set to `'yes'` when the box is checked, and set to `'no'` when unchecked. You can also bind them to dynamic values using `v-bind`: ```vue-html