diff --git a/src/tutorial/src/step-5/description.md b/src/tutorial/src/step-5/description.md index 977418022d..549684f584 100644 --- a/src/tutorial/src/step-5/description.md +++ b/src/tutorial/src/step-5/description.md @@ -42,6 +42,6 @@ To simplify two-way bindings, Vue provides a directive, `v-model`, which is esse `v-model` automatically syncs the ``'s value with the bound state, so we no longer need to use an event handler for that. -`v-model` works not only on text inputs, but also other input types such as checkboxes, radio buttons, and select dropdowns. We cover more details in Guide - Form Bindings. +`v-model` works not only on text inputs, but also on other input types such as checkboxes, radio buttons, and select dropdowns. We cover more details in Guide - Form Bindings. Now, try to refactor the code to use `v-model` instead.