diff --git a/src/guide/components/v-model.md b/src/guide/components/v-model.md index e5ca52b6..27ebd1c3 100644 --- a/src/guide/components/v-model.md +++ b/src/guide/components/v-model.md @@ -444,7 +444,7 @@ function emitValue(e) {
-Modifiers added to a component `v-model` will be provided to the component via the `modelModifiers` prop. In the below example, we have created a component that contains a `modelModifiers` prop that defaults to an empty object: +添加到组件的 `v-model` 的修饰符将通过 `modelModifiers` 属性提供给组件。在下面的示例中,我们创建了一个包含 `modelModifiers` 属性的组件,该属性默认为空对象: ```vue{11}