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的主要内容,如果未能解决你的问题,请参考以下文章

语法糖&具名插槽&作用域插槽&混入

Vue中解决路由切换,页面不更新的实用方法

vue2.0 动态切换组件

vue页面缓存(keepAlive)

Vue中img标签的src属性绑定的坑

vue3 <script setup> 写法