2020
10-28
10-28
vue.js封装switch开关组件的操作
我的项目本来用的element,但是switch开关不符合设计要求,于是自己封装了一个switch组件,并且实现了switch开关的双向数据绑定<template><labelrole="checkbox":class="['switch',{toggled}]"><inputtype="checkbox"class="switch-input"@change="toggle"/><divclass="switch-core":style="{backgroundColor:toggled?colorChecked:colorUnchecked}"><divclass="switch-button":style="{transition:`transfor...
继续阅读 >