<div v-for="(item,index) in title" @click="tabClick(index)" class="tab-control-item" :class="{active:index === currentIndex}">
<span>{{item}}</span>
</div>
methods:{
tabClick(index){
console.log(index)
this.currentIndex=this.index
}
}

[Vue warn]: Property or method "currentIndex" is not defined on the instance but referenced during render.
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-