路由跳转方法

 router/index.js页面设置,去到Html使用

{
      path: "/setting",
      name: "setting",
      component: setting,
      meta: {
        title: "设置" // 添加该字段,表示进入这个路由是需要登录的
      }
    },

 点击触发事件:

点击 跳转到上一个页面

 goToMenu(){
        //    跳转到上一个页面
        this.$router.go(-1)
       }

 指定跳转到menu页面:

  goResult : function(){
            // this.$router.go(-1);
        this.$router.replace('/menu')
        },

指定跳转到menuLink的名字下:

golink : function(){
            // 指定跳转到menuLink的名字下
            this.$router.replace({name:'menuLink'})
        },

通过push通过Name进行跳转,可以传很多参数

 golink : function(){
            // 通过push通过Name进行跳转,可以传很多参数 
            this.$router.push({name:'meunLink'})
        },

 

你可能感兴趣的:(vue2.0,周家大小姐)