[bugfix] Area: change event values incorrect (#3219)

This commit is contained in:
neverland
2019-04-26 11:36:25 +08:00
committed by GitHub
parent 5ae6d3aabc
commit 377060e11a
2 changed files with 12 additions and 1 deletions

View File

@@ -110,7 +110,7 @@ export default sfc({
onChange(picker, values, index) {
this.code = values[index].code;
this.setValues();
this.$emit('change', picker, values, index);
this.$emit('change', picker, picker.getValues(), index);
},
setValues() {