diff --git a/active-rfcs/0000-v-model-api-change.md b/active-rfcs/0000-v-model-api-change.md index c6dfbf91..e7d318ff 100644 --- a/active-rfcs/0000-v-model-api-change.md +++ b/active-rfcs/0000-v-model-api-change.md @@ -79,9 +79,9 @@ Will compile to: ``` js h(Comp, { - modelValue: foo, + modelValue: text, 'onUpdate:modelValue': value => { - foo = value + text = value }, modelModifiers: { foo: true,