如何让el-switch默认激活
时间: 2023-08-14 11:05:46 浏览: 193
vue el-tree 默认展开第一个节点的实现代码
el-switch的默认状态是关闭的,如果要让el-switch默认激活,可以设置v-model绑定的值为true。例如:
```
<el-switch v-model="switchValue"></el-switch>
```
在data中设置switchValue的初始值为true,这样el-switch就会默认激活:
```
data() {
return {
switchValue: true
}
}
```
这样el-switch组件就会默认激活,并且可以通过v-model绑定switchValue的值来获取开关状态。
阅读全文