Update Select on-change value

This commit is contained in:
梁灏 2021-05-26 10:39:52 +08:00
parent c48e0af2d4
commit 8dc80b8430

View file

@ -835,8 +835,8 @@
}
}
this.$emit('input', vModelValue); // to update v-model
this.$emit('on-change', JSON.stringify(emitValue));
this.dispatch('FormItem', 'on-form-change', JSON.stringify(emitValue));
this.$emit('on-change', emitValue);
this.dispatch('FormItem', 'on-form-change', emitValue);
}
},
query (query) {