💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
### 方法 单选控件实例: ```php $radio = $dynamicControl->radio(); ``` 设置单元格最小宽度: ```php $instance->minWidth(100); ``` 设置单选选项: ```php $radio->options([ 'yes' => '是', 'no' => '否', ]); ``` 设置控件标签: ```php $radio->label('单选'); ``` 设置默认值: ```php $radio->defaultValue('yes'); ``` 设置为必填: ```php $radio->required(true); ``` 设置注释文本: ```php $radio->comment('这里是一个注释文本'); ``` 设置ui类: ```php $radio->uiClass(['f13']); ``` 设置style样式: ```php $radio->style(); ``` 设置html属性: ```php $radio->attribute(); ```