Switch 开关
规则
js
{
type:"switch",
title:"是否上架",
field:"is_show",
value:"1",
props: {
round: false,
},
}
value :Number | String
Props
名称 | 类型 | 默认值 | 说明 |
---|---|---|---|
checked-value | string | boolean | number | true | 选中时对应的值 |
disabled | boolean | false | 是否禁用 |
loading | boolean | false | 是否加载 |
rail-style | (info: { focused: boolean, checked: boolean }) => (CSSProperties | string) | undefined | 创建轨道样式的函数 |
round | boolean | true | 是否为圆形按钮 |
size | 'small' | 'medium' | 'large' | 'medium' | 开关大小 |
unchecked-value | string | boolean | number | false | 未选中时对应的值 |
on-update:value | (value: boolean) => void | undefined | 组件值发生变化的回调 |