| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
 | | // 单选框组 |  | 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: [] |  |   } |  | } | 
 |