Vue中切换标签对应不同的页面写法,其实就是绑定class
Posted myfirstboke
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue中切换标签对应不同的页面写法,其实就是绑定class相关的知识,希望对你有一定的参考价值。
<div class=‘niubi‘> <p :class="active===index ? ‘isActive‘ : ‘‘" @click="bb(index)" v-for="(item,index) in arrow" :key="index"> item.name </p> </div>
arrow:[ name:‘大哥‘ , name:‘小弟‘ , name:‘第中弟‘ ], active:0
方法:
bb(index)
this.active=index
,
样式自己去写
以上是关于Vue中切换标签对应不同的页面写法,其实就是绑定class的主要内容,如果未能解决你的问题,请参考以下文章