We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9171cbf commit dc2fa0aCopy full SHA for dc2fa0a
src/guide/forms.md
@@ -269,7 +269,7 @@ new Vue({
269
270
## 绑定 value
271
272
-对于单选按钮,勾选框及选择列表选项,`v-model` 绑定的 value 通常是静态字符串(对于勾选框是逻辑值):
+对于单选按钮,勾选框及选择列表选项, `v-model` 绑定的 value 通常是静态字符串(对于勾选框是逻辑值):
273
274
``` html
275
<!-- 当选中时,`picked` 为字符串 "a" -->
@@ -333,7 +333,7 @@ vm.selected.number // -> 123
333
334
### `.lazy`
335
336
-在默认情况下,`v-model` 在 `input` 事件中同步输入框值与数据,但你可以添加一个修饰符 `lazy`,从而转变为在 `change` 事件中同步:
+在默认情况下, `v-model` 在 `input` 事件中同步输入框值与数据,但你可以添加一个修饰符 `lazy` ,从而转变为在 `change` 事件中同步:
337
338
339
<!-- 在 "change" 而不是 "input" 事件中更新 -->
0 commit comments