-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Labels
enhancementNew feature or requestNew feature or request
Description
目前的radio组件组件如果需要disable的话,需要在每一个option中单独的配置,能不能通过在顶层中传入disbale的方式进行全部选项的disable。
目前:
{
'type': 'Radio',
'label': '水果',
'model': 'fruit',
'options': [
{
'label': '苹果',
'value': 'apple',
'disabled': true
},
{
'label': '桃子',
'value': 'peach',
'disabled': true
}
]
}
希望:
{
'type': 'Radio',
'label': '水果',
'disabled': true,
'model': 'fruit',
'options': [
{
'label': '苹果',
'value': 'apple'
},
{
'label': '桃子',
'value': 'peach'
}
]
}
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request