-
Notifications
You must be signed in to change notification settings - Fork 150
Closed
Labels
questionFurther information is requestedFurther information is requested
Description
请问v-models的值怎么使用变量,models的值由多个变量组合,例如
const name = ref('')
const age = ref(0)
const models = []
models.push([name.value, 'name'])
models.push([age.value, 'age', ['number']])
return () => (
<Test v-models={models} />
)
我这样使用会报错Internal server error: unknown: Property key of ObjectProperty expected node to be of a type ["Identifier","StringLiteral","NumericLiteral"] but instead got undefined
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested