修复autoComplete的on-change事件的bug
当使用v-model绑定value的时候on-change事件只会在第一次触发。
This commit is contained in:
parent
c45f05dd43
commit
f32d1f412a
1 changed files with 4 additions and 2 deletions
|
@ -124,7 +124,9 @@
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
value (val) {
|
value (val) {
|
||||||
this.disableEmitChange = true;
|
if(this.currentValue !== val){
|
||||||
|
this.disableEmitChange = true;
|
||||||
|
}
|
||||||
this.currentValue = val;
|
this.currentValue = val;
|
||||||
},
|
},
|
||||||
currentValue (val) {
|
currentValue (val) {
|
||||||
|
@ -161,4 +163,4 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Add table
Reference in a new issue