Commit 315dd685f7ab640ab1d5440d658d8790731402ec
1 parent
2bdeea65
fix #4910
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
src/components/select/select.vue
... | ... | @@ -664,6 +664,7 @@ |
664 | 664 | if (value === '') this.values = []; |
665 | 665 | else if (checkValuesNotEqual(value,publicValue,values)) { |
666 | 666 | this.$nextTick(() => this.values = getInitialValue().map(getOptionData).filter(Boolean)); |
667 | + this.dispatch('FormItem', 'on-form-change', this.publicValue); | |
667 | 668 | } |
668 | 669 | }, |
669 | 670 | values(now, before){ | ... | ... |