1. 程式人生 > >vue的this.$router.push()方法跳轉路由帶引數

vue的this.$router.push()方法跳轉路由帶引數

這個方法需要注意一點,path和params不能同時使用使用了path,params就失效了

解決方法  加入 路由a 跳轉到 路由b

路由a

        this.$router.push({
            name:"Show", 
            params: { 
              key:value
            }

        })

路由b

    this.$route.params中就有a傳的引數了