Skip to content

Commit 4f17be7

Browse files
authored
fix(compat): avoid accidentally delete the modelValue prop (vuejs#3772)
1 parent 92e7330 commit 4f17be7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/runtime-core/src/compat/componentVModel.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,10 @@ export function convertLegacyVModelProps(vnode: VNode) {
3939
// modelValue -> value
4040
// onUpdate:modelValue -> onModelCompat:input
4141
const { prop = 'value', event = 'input' } = (type as any).model || {}
42-
props[prop] = props.modelValue
43-
delete props.modelValue
42+
if (prop !== 'modelValue') {
43+
props[prop] = props.modelValue
44+
delete props.modelValue
45+
}
4446
// important: update dynamic props
4547
if (dynamicProps) {
4648
dynamicProps[dynamicProps.indexOf('modelValue')] = prop

0 commit comments

Comments
 (0)