猿问

vue的li点击事件如何绑定类名?

template代码是
    篮球
    中超
    英超
    西甲
    德甲
    意甲
    幸运球场
原jq代码是:
$(".news_title").on("click",'li',function(){
$(".news_titleli").removeClass("news_active");
$(this).addClass("news_active");
vartype=$(this).attr("type1");
});
请教下怎么迁移这个jq到vue上做点击事件呢?即点击li添加类名,兄弟去除类名.看网上的方法都是要做for循环,请问下有不做for循环就能实现的方法吗?前提不要太复杂,蟹蟹
白猪掌柜的
浏览 1357回答 2
2回答

繁星coding

篮球data(){return{activeIndex:0}},methods:{activate(index){this.activeIndex=index}}

有只小跳蛙

vue有v-class可以自动绑定css
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答