Skip to content

Switch 开关

表示两种相互对立的状态间的切换,多用于触发「开/关」。

基本用法

[
  {
    type: "switch",
    name: "switch",
    text: "开关"
  }
]
显示配置

扩展的 value 类型

设置 activeValue 和 inactiveValue 属性,接受 Boolean , String 或 Number 类型的值。

[
  {
    type: "switch",
    name: "switch",
    text: "开关",
    activeValue: "on",
    inactiveValue: "off"
  }
]
显示配置

禁用状态

设置 disabled 属性,接受一个 Boolean,设置 true 即可禁用。

[
  {
    type: "switch",
    name: "switch",
    text: "开关",
    disabled: true
  }
]
显示配置

Attributes

参数说明类型可选值默认值
name绑定值string
disabled是否禁用boolean / Functionfalse
active-valueswitch 打开时的值boolean / string / numbertrue
inactive-valueswitch 关闭时的值boolean / string / numberfalse

Powered by 腾讯视频会员平台技术中心