Vue--分别运用class绑定和style绑定,通过点击实现样式的切换

放一下Vue官方文档
【Vue--分别运用class绑定和style绑定,通过点击实现样式的切换】https://cn.vuejs.org/v2/guide...

可以简写成

class绑定
Vue--分别运用class绑定和style绑定,通过点击实现样式的切换
文章图片

Document - 锐客网/* 点击前的样式 */ .class1 { background-color: #fff; color: #333; }/* 点击之后的样式 */ .class2 { background-color: #f52819; color: #fff; }/* 给按钮设置样式 */ button { width: 80px; height: 40px; border-radius: 5px; border: 2px solid rgb(179, 167, 167); background-color: #fff; }

style绑定
Vue--分别运用class绑定和style绑定,通过点击实现样式的切换
文章图片

Document - 锐客网/* 给按钮设置样式 */ button { width: 80px; height: 40px; border-radius: 5px; border: 2px solid rgb(179, 167, 167); background-color: #fff; }

    推荐阅读