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