如何在vue.js中切换类?
我有以下内容:
<th class="initial " v-on="click: myFilter">
<span class="wkday">M</span>
</th>
new Vue({
el: '#my-container',
data: {},
methods: {
myFilter: function(){
// some code to filter users
}
}
});
当我单击时,th
我想按以下方式申请active
课程:
<th class="initial active" v-on="click: myFilter">
<span class="wkday">M</span>
</th>
这需要切换,即每次单击它都需要添加/删除类。
此示例使用列表:在某些位置单击时,它变为红色
的HTML:
JS:
的CSS
小提琴:
https://jsfiddle.net/w37vLL68/158/