JSelectInput 可输入下拉框 ✔
可输入的下拉选择框
组件参数
参数 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
options | array | [] | 默认选项 | |
disabled | bool | false | 是否禁用 | |
showSearch | bool | true | 使单选模式可搜索 |
更多参数见:Select 选择器
效果展示
使用示例
const schemas: FormSchema[] = [
{
field: 'JSelectInput',
label: 'JSelectInput',
component: 'JSelectInput',
componentProps: {
options: [
{ label: 'Default', value: 'default' },
{ label: 'IFrame', value: 'iframe' },
],
},
},
]