fix: ColorCheckBox's change event problem

This commit is contained in:
iczer 2018-08-24 17:53:16 +08:00 committed by chenghx
parent 94c172f41f
commit e718a6a28c

View File

@ -44,9 +44,9 @@ const Group = {
}
},
watch: {
'values': function (newVal, oldVal) {
values: function (newVal, oldVal) {
// chang
if (!(newVal.length === 1 && oldVal.length === 1 && newVal[0] === oldVal[0])) {
if (!(newVal.length === 1 && oldVal.length === 1 && newVal[0] === oldVal[0]) || this.multiple) {
this.$emit('change', this.values, this.colors)
}
}