// 多选框组 export default { FComponentType: 'checkbox', FComponentName: '多选框组', size: 'medium', min: null, max: null, disabled: false, style: {}, __slot__: { options: [{ label: '选项一', value: 1 }, { label: '选项二', value: 2 }] }, __config__: { label: '多选框组', tag: 'el-checkbox-group', tagIcon: 'checkbox', defaultValue: [], span: 24, showLabel: true, labelWidth: null, layout: 'colFormItem', optionType: 'default', required: true, regList: [], border: false } }