JSwitch开关组件 ✔
组件参数
参数 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
value(v-model) | string / number | '' | ||
options | array | ['Y', 'N'] | 取值 options | |
labelOptions | array | ['是', '否'] | 文本 options | |
query | bool | false | 是否使用下拉 | |
disabled | bool | false | 是否禁用 |
更多参数见:Switch 开关 或 Select 选择器
效果展示
使用示例
const schemas: FormSchema[] = [
{
field: 'JSwitch',
component: 'JSwitch',
label: 'JSwitch',
},
{
field: 'JSwitchSelect',
component: 'JSwitch',
label: 'JSwitchSelect',
componentProps: { query: true },
},
]