# FxSwitch 开关
表示两种相互对立的状态间的切换,多用于触发「开/关」。
# 基本用法
复制代码
# 文字描述
复制代码
# 扩展的 value 类型
复制代码
# 禁用状态
复制代码
# Attributes
参数 | 说明 | 类型 | 可选值 | 默认值 | PC/移动端支持情况 |
---|---|---|---|---|---|
value / v-model | 绑定值 | boolean / string / number | — | — | PC/移动端 |
disabled | 是否禁用 | boolean | — | false | PC/移动端 |
width | switch 的宽度(像素) | number | — | 40(移动端为52) | PC/移动端 |
height | switch 的高度(像素) | number | — | 32 | 仅移动端 |
active-icon-class | switch 打开时所显示图标的类名,设置此项会忽略 active-text | string | — | — | 仅PC |
inactive-icon-class | switch 关闭时所显示图标的类名,设置此项会忽略 inactive-text | string | — | — | 仅PC |
active-text | switch 打开时的文字描述 | string | — | — | 仅PC |
inactive-text | switch 关闭时的文字描述 | string | — | — | 仅PC |
active-value | switch 打开时的值 | boolean / string / number | — | true | 仅PC |
inactive-value | switch 关闭时的值 | boolean / string / number | — | false | 仅PC |
active-color | switch 打开时的背景色 | string | — | #409EFF | 仅PC |
inactive-color | switch 关闭时的背景色 | string | — | #C0CCDA | 仅PC |
name | switch 对应的 name 属性 | string | — | — | 仅PC |
validate-event | 改变 switch 状态时是否触发表单的校验 | boolean | - | true | 仅PC |
size | switch 组件尺寸 | string | medium / small / mini | — | 仅PC |
tip | switch 组件鼠标hover时的小提示 | string | — | — | 仅PC |
# Events
事件名称 | 说明 | 回调参数 | PC/移动端支持情况 |
---|---|---|---|
change | switch 状态发生变化时的回调函数 | 新状态的值 | PC/移动端 |
# Methods
方法名 | 说明 | 参数 | PC/移动端支持情况 |
---|---|---|---|
focus | 使 Switch 获取焦点 | - | 仅PC |