# 单选开关 switch
# 描述
在两种状态间切换时用到的开关按钮。
# 使用效果
# 使用方法
在.ux
文件中引入组件
<import name="q-switch" src="qaui/src/components/switch/index"></import>
1
# 示例
<template>
<div class="qaui-wrap">
<div class="row">
<q-switch value="true"></q-switch>
<text>常规-开</text>
</div>
<div class="row">
<q-switch></q-switch>
<text>常规-关</text>
</div>
<div class="row">
<q-switch value="true" disabled="true"></q-switch>
<text>不可点击-开</text>
</div>
<div class="row">
<q-switch disabled="true"></q-switch>
<text>不可点击-关</text>
</div>
</div>
</template>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.qaui-wrap {
flex-direction: column;
padding: 20px;
.row {
margin-bottom: 10px;
}
text {
font-size: 14px;
color: #000000;
margin-left: 10px;
}
}
1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
# API
# 组件属性
属性 | 类型 | 默认值 | 说明 |
---|---|---|---|
value | Boolean | false | 当前开关默认值 |
disabled | Boolean | false | 是否处于禁用状态 |
# 组件事件
事件名称 | 事件描述 | 返回值 |
---|---|---|
change | 值发生变化的事件 | 当前开关状态 |
← 验证码 vcode 滑动条 slider →