HomeDocs
跳到主要内容

Switch 滑动开关

简介

用来打开或关闭选项。

属性说明

字段说明类型默认值
active开关状态BooleanFALSE
size尺寸,可选值 small/base/largeStringbase
disabled是否禁用BooleanFALSE
label内嵌文字标签,竖线分开,如 ON /OFF 或 开 / 关String

事件

名称说明回调参数
change切换时触发函数value

示例

<view class="bg-white br4 pd16">
<mswitch size="large" :active="false" bind:change="handleSwitch"></mswitch>
</view>
Page({
data: {},
handleSwitch(val) {
console.log("switch====", val);
},
});
Privacy agreementDeveloper agreementcontact us: developer_service.mi@transsion.com © 2024 MiniApp. All Rights Reserved.