**JSelectInput 组件文档** [TOC] 可输入的下拉选择框 ## 组件参数 | 参数 | 类型 | 必填 | 默认值 | 说明 | | --- | --- | --- | --- | --- | | options | array | | [] | 默认选项 | | disabled | bool | | false | 是否禁用 | | showSearch| bool | | true| 使单选模式可搜索 | >[info] 更多参数见:[Select 选择器](https://2x.antdv.com/components/select-cn/#API) ## 效果展示 ![](https://img.kancloud.cn/8f/c8/8fc825057155eabd0268fcf82baf5902_428x93.png) ![](https://img.kancloud.cn/0f/2c/0f2cfd428db5144b11eb754ad3e24274_423x155.png) ## 使用示例 ``` js const schemas: FormSchema[] = [ { field: 'JSelectInput', label: 'JSelectInput', component: 'JSelectInput', componentProps: { options: [ { label: 'Default', value: 'default' }, { label: 'IFrame', value: 'iframe' }, ], }, }, ] ```