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

pull/1370/head
tanjinzhou 5 years ago
parent 2e9b3000ac
commit c33965d6e6

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

Loading…
Cancel
Save