Switch 开关
通常用于切换开启和关闭状态。
按需引入方式
如果是完整引入可跳过此步骤
javascript
import Vue from 'vue'
import { Switch } from 'element-ui'
import 'element-ui/lib/theme-chalk/base.css'
import 'element-ui/lib/theme-chalk/switch.css'
Vue.use(Switch)
基础用法
vue
<template>
<el-switch v-model="value" active-color="#10b981" inactive-color="#424243">
</el-switch>
</template>
<script>
export default {
data() {
return {
value: true
}
}
}
</script>
Attributes
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
v-model | 选中项绑定值 | boolean | string | number | |
active-color | 打开时的背景色 | string | #409EFF |
inactive-color | 关闭时的背景色 | string | #C0CCDA |
... |