This commit is contained in:
lifenglu 2019-10-16 10:23:20 +08:00
parent 873c7c3bd2
commit 9de03cf9f5

View file

@ -710,7 +710,7 @@
if (value === '') this.values = [];
else if (checkValuesNotEqual(value,publicValue,values)) {
this.$nextTick(() => this.values = getInitialValue().map(getOptionData).filter(Boolean));
!(Array.isArray(value)) && this.dispatch('FormItem', 'on-form-change', this.publicValue);
if (!this.multiple) this.dispatch('FormItem', 'on-form-change', this.publicValue);
}
},
values(now, before){