diff --git a/components/checkbox/Group.jsx b/components/checkbox/Group.jsx index 2a103603d..75f23d362 100644 --- a/components/checkbox/Group.jsx +++ b/components/checkbox/Group.jsx @@ -9,7 +9,7 @@ export default { type: String, }, defaultValue: { - default: () => [], + default: undefined, type: Array, }, value: { @@ -33,7 +33,7 @@ export default { data () { const { value, defaultValue } = this return { - sValue: value || defaultValue, + sValue: value || defaultValue || [], } }, methods: {