From 98f98bbb9abaa28ca91aaf0910ce8e6ba1827393 Mon Sep 17 00:00:00 2001 From: dy-xiaodong2022 Date: Thu, 25 Apr 2024 22:45:35 +0800 Subject: [PATCH 1/2] docs: translate /guide/components/v-model --- src/guide/components/v-model.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/guide/components/v-model.md b/src/guide/components/v-model.md index e5ca52b68..27ebd1c3f 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}