vue 自定义v-model的组件 修饰符无效,需要改怎么做!
发布网友
发布时间:2022-03-25 04:36
我来回答
共1个回答
热心网友
时间:2022-03-25 06:06
Vue.component('sign-input', {
props: ['value'],
template: `
<input :value="value" @input="$emit('input', $event.target.value)" />
`
})
new Vue({
data(){
return {a: 1234}
}
}).$mount('#app')
<div id="app">
{{a}}
<sign-input v-model="a"/>
</div>