码迷,mamicode.com
首页 > 其他好文 > 详细

VUE页面跳转方式

时间:2020-05-11 13:23:19      阅读:58      评论:0      收藏:0      [点我收藏+]

标签:method   class   outer   col   this   link   页面   返回   跳转   

一、to +跳转路径

<router-link to="/">跳转到主页</router-link>

 

 

 

 

二、函数跳转

 
<button @click="goHome">[跳转到主页]</button>


  methods: {
    goHome () {
      this.$router.push(‘/Test‘)
    }
  }

三、统计浏览器返回

<button @click="goHome">[跳转到主页]</button>


  methods: {
    downpage () {
      this.$router.go(-1)
    }
  }

 

 

 

 

 

 

 

VUE页面跳转方式

标签:method   class   outer   col   this   link   页面   返回   跳转   

原文地址:https://www.cnblogs.com/yc-c/p/12868216.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!