fix: CheckBox.Group throw error when update value to undefined #1360

pull/1370/head
tanjinzhou 2019-10-30 16:37:19 +08:00
parent 2e9b3000ac
commit c33965d6e6
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ export default {
},
watch: {
value(val) {
this.sValue = val;
this.sValue = val || [];
},
},
methods: {