1
0
mirror of https://gitee.com/vant-contrib/vant.git synced 2025-04-06 03:57:59 +08:00

chore(Area): rename variable ()

This commit is contained in:
neverland 2020-06-08 19:42:20 +08:00 committed by GitHub
parent 1e2085b6c0
commit ab84662ecf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -185,10 +185,8 @@ export default createComponent({
this.code = values[index].code;
this.setValues();
let getValues = picker.getValues();
getValues = this.parseOutputValues(getValues);
this.$emit('change', picker, getValues, index);
const parsedValues = this.parseOutputValues(picker.getValues());
this.$emit('change', picker, parsedValues, index);
},
onConfirm(values, index) {