🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
### 方法 动态标签控件实例: ```php $tag= $formControl->tag(); ``` 设置控件标签: ```php $tag->label('文本'); ``` 设置默认值: ```php $tag->defaultValue(['标签1', '标签2', '标签3']); ``` 设置为必填: ```php $tag->required(true); ``` 设置注释文本: ```php $tag->comment('这里是一个注释文本'); ``` 设置栅栏布局 (默认:12`): ```php $tag->layout(6); ``` 设置ui类: ```php $tag->uiClass(['f13']); ``` 设置style样式: ```php $tag->style(); ``` 设置html属性: ```php $tag->attribute(); ```