Vue中Switch开关的实现
1、介绍Switch开关为element-ui中的开关控件;2、页面代码<el-switchv-model="rohs"active-color="#13ce66"inactive-color="#ff4949"></el-switch>3、JS代码<script>export default {data(...
·
1、介绍
Switch开关为element-ui中的开关控件;
2、页面代码
<el-switch
v-model="rohs"
active-color="#13ce66"
inactive-color="#ff4949">
</el-switch>
3、JS代码
<script>
export default {
data() {
return {
rohs: true,
}
}
};
</script>
更多推荐
已为社区贡献15条内容
所有评论(0)