diff --git a/src/guide/components/v-model.md b/src/guide/components/v-model.md index db113564..459e2680 100644 --- a/src/guide/components/v-model.md +++ b/src/guide/components/v-model.md @@ -90,10 +90,10 @@ const model = defineModel({ default: 0 }) If you have a `default` value for `defineModel` prop and you don't provide any value for this prop from the parent component, it can cause a de-synchronization between parent and child components. In the example below, the parent's `myRef` is undefined, but the child's `model` is 1: ```js -// child component: +// дочерний компонент: const model = defineModel({ default: 1 }) -// parent component: +// родительский компонент: const myRef = ref() ```