废话少说直接上代码:
这是html模板
<template>
<div class="hello">
<ul>
<li
v-for="(list, index) in list"
:class="{'active':ind === index}"
@click="changeBgc(index)">{{list}}</li>
</ul>
</div>
</template>
js部分
data () {
return {
list: ['苹果', '香蕉', '菠萝', '芒果'],
ind: ''
}
},
methods: {
changeBgc: function (index) {
this.ind = index
}
}
网友评论