Vue自定义组件双向绑定,使用v-model
2020-11-14 本文已影响0人
nbicelove
用watch方法监听当前自己设置的值
watch: {
searchName(nVal) {
this.$emit('input',nVal);
this.$emit('change',nVal);
},
value:{
immediate:true,
handler(nVal) {
this.searchName = nVal;
}