buttonRadio表示组件的配置项类型为单选按钮。
配置项说明
字段名 | 含义 | 类型 | 是否必选 | 备注 |
name | 显示名 | string | 是 | 无。 |
type | 类型 | string | 是 | 无。 |
default | 默认值 | string | 否 | 不填时值为空。 |
options | 选项列表 | array | 否 | 对象数组,包含label 和value 字段。label 为显示文本,value 为文本值。 |
evenlySplit | 均匀等分 | boolean | 否 | 使图标在⼀⾏中均匀分布。当和optionCol 同时出现时,优先使用evenlySplit 的值。 |
值说明
条件 | 数据类型 | 示例 | 默认值 |
无 | object | "left" | "" |
配置示例
"algin": {
"name": "对齐方式",
"type": "buttonRadio",
"evenlySplit": true,
"options": [
{
"value": "left",
"label": "左对齐"
},
{
"value": "right",
"label": "居中对齐"
},
{
"value": "bottom",
"label": "右对齐"
}
]
}
文档内容是否对您有帮助?