vue三种不同方式实现页面跳转

  • Vue:router-lin
 [跳转到主页]
 [登录]
 [登出]
  • this.$router.push("/");
export default {
   name: "App",
   methods: {
     // 跳转页面方法
       goHome() {
       this.$router.push("/");
    },
}

 

  • this.$router.go(1);
     
     
     upPage() {
      //  后退一步记录,等同于 history.back()
      this.$router.go(-1);
    },

    downPage() {
      // 在浏览器记录中前进一步,等同于 history.forward()
      this.$router.go(1);
    }

代码示例:



 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

你可能感兴趣的:(Vue)