Update cascader.vue

This commit is contained in:
梁灏 2021-09-16 16:42:31 +08:00
parent 46c7303289
commit 0f88a39e24

View file

@ -171,7 +171,8 @@
currentValue: this.value || [],
query: '',
validDataStr: '',
isLoadedChildren: false // #950
isLoadedChildren: false, // #950
isValueNull: false // hack value null $emit:input [] null
};
},
computed: {
@ -438,11 +439,17 @@
this.$emit('on-visible-change', val);
},
value (val) {
this.currentValue = val;
if (!val.length) this.selected = [];
if (val === null) this.isValueNull = true;
this.currentValue = val || [];
if (val === null || !val.length) this.selected = [];
},
currentValue () {
if (this.isValueNull) {
this.isValueNull = false;
this.$emit('input', null);
} else {
this.$emit('input', this.currentValue);
}
if (this.updatingValue) {
this.updatingValue = false;
return;