修复autoComplete的on-change事件的bug

当使用v-model绑定value的时候on-change事件只会在第一次触发。
This commit is contained in:
Wu-K'ung 2018-04-25 21:05:17 +08:00 committed by GitHub
parent c45f05dd43
commit f32d1f412a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -124,7 +124,9 @@
},
watch: {
value (val) {
this.disableEmitChange = true;
if(this.currentValue !== val){
this.disableEmitChange = true;
}
this.currentValue = val;
},
currentValue (val) {
@ -161,4 +163,4 @@
}
}
};
</script>
</script>