Switch

This is an overview of the most common usage of Switch. For more information about the available properties, methods, or events, head over to the complete API documentation for Switch.

<Switch> 是一个UI组件,允许用户在两​​种状态之间切换。

默认状态为 false 或OFF。


<Switch checked="true" />

<Switch>使用提供双向数据绑定 v-model

<Switch v-model="itemEnabled" />

道具

名称类型描述
checkedBoolean获取或设置开关选择的值。
默认值:false

活动

名称描述
checkedChange当开关选择改变时发出。

原生组件

AndroidiOS
android.widget.SwitchUISwitch
Contributors