24小时48小时// 3.方法methods: {hoursTab(val) {this.hour_vue css按钮选中样式"> 赞 踩 // 1.定义变量 Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。
vue动态绑定css选中样式_vue css按钮选中样式
activeHour == ‘24’
// 2.vue代码
<span @click=“hoursTab(‘24’)” v-bind:class="{ activeHour:hourTab == ‘24’}">24小时
<span @click=“hoursTab(‘48’)” v-bind:class="{ activeHour:hourTab == ‘48’}">48小时
// 3.方法
methods: {
hoursTab(val) {
this.hourTab = val
}
},
// 4.样式
.activeHour {
background-color: #1890ff;
color: #fff !important;
border-radius: 5px;
}