vue和el-tabs实现页面跳转到指定的tab上

标签(空格分隔): vue


在做vue开发的时候遇到一个问题,跳转到A界面返回B的时候 要回到B界面的第二个tab上

 
        
          
        
        
          
        

就是说进入页面,就选中的是‘第二页’这个页签

A界面的跳转

this.$router.push({
                    path: '/zbglindex/zbgl1?activeName=second¤tTab=second',
                })

跳转到B界面,B界面的代码

 mounted(){
        this.showtabs();//跳转到指定tab
    },
    methods:{
     
      showtabs(){
          if(this.$route.query.activeName!=null){
              this.activeName = this.$route.query.activeName;
              let current1 = this.activeName;
              if(current1=='second'){
                 this.$refs['zbsq'].loadingData();//进入页面要调用的函数
              }
          }
      } 
    }

你可能感兴趣的:(vue和el-tabs实现页面跳转到指定的tab上)