From 250162615ca5c0a16f1a171c91ff1369a3df7d8e Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 6 Nov 2019 14:49:17 -0500 Subject: [PATCH] Update 0000-v-model-api-change.md I believe the model is `text`, not `foo`, in `v-model.foo.bar="text"` --- active-rfcs/0000-v-model-api-change.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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,