码迷,mamicode.com
首页 > 其他好文 > 详细

vue中v-for循环列表中如何将样式绑定在某一列上

时间:2021-06-02 13:14:41      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:lis   script   current   -o   for循环   for   v-for   OLE   lex   

1:html

<div class="bd7 flex-row">
<span class="word3 flex-col" v-for="(item, index) in datalist" :class="currentClass(index)" v-on:click="jgClick(item.num,index)">{{item.num}}元</span>
</div>

2:script

data: {
isActived: 0

}

jgClick: function (num,index) {
this.total = num
this.isActived = index
},
currentClass: function (index) {
console.log(index)
return this.isActived == index ? ‘active‘ : ‘‘;
}

vue中v-for循环列表中如何将样式绑定在某一列上

标签:lis   script   current   -o   for循环   for   v-for   OLE   lex   

原文地址:https://www.cnblogs.com/gumuchenglin/p/14818857.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!