Simulating v-model behavior failed #13348
Unanswered
githublaohu
asked this question in
Help/Questions
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Simulating code,
this.$props.data = this.$data.$value.value; this.$props["onUpdate:data"] = $event => this.$data.$value.value = $event; return _createVNode(_resolveComponent("t-table"), this.$props, null);
`
const props = mergeProps({
"data": this.$viewBaseMeta.$data.$value.value,
"onUpdate:data": $event => this.$viewBaseMeta.$data.$value.value = $event
}, this.$props);
`
vue code
return _createVNode(_resolveComponent("t-table"), _mergeProps({ "data": this.$data.$value.value, "onUpdate:data": $event => this..$data.$value.value = $event }, this.$props), null);
Beta Was this translation helpful? Give feedback.
All reactions