<div id="app">
"inputValue 的值:" + {{inputValue}}
<my-input v-model="inputValue"></my-input>
</div>
Vue.component('my-input', {
template: '<div><input type="text" ref="el" :value="value" @input="onInput"/></div>',
props: {
value: String
},
methods: {
onInput() {
this.$emit('input', this.$refs.el.value);
}
}
});
new Vue({
el: '#app',
data: {
inputValue: '10'
}
});