fix(v-model): fix incorrect codegen for non-ref bindings

fix #6241
This commit is contained in:
Evan You 2022-11-10 15:29:17 +08:00
parent f793faaeb7
commit 15e889afaf
2 changed files with 23 additions and 2 deletions

View File

@ -48,8 +48,9 @@ export const transformModel: DirectiveTransform = (dir, node, context) => {
const maybeRef =
!__BROWSER__ &&
context.inline &&
bindingType &&
bindingType !== BindingTypes.SETUP_CONST
(bindingType === BindingTypes.SETUP_LET ||
bindingType === BindingTypes.SETUP_REF ||
bindingType === BindingTypes.SETUP_MAYBE_REF)
if (
!expString.trim() ||

View File

@ -673,6 +673,26 @@ defineExpose({ foo: 123 })
assertCode(content)
})
test('v-model should not generate ref assignment code for non-setup bindings', () => {
const { content } = compile(
`<script setup>
import { ref } from 'vue'
const count = ref(0)
</script>
<script>
export default {
data() { return { foo: 123 } }
}
</script>
<template>
<input v-model="foo">
</template>
`,
{ inlineTemplate: true }
)
expect(content).not.toMatch(`_isRef(foo)`)
})
test('template assignment expression codegen', () => {
const { content } = compile(
`<script setup>