vue路由跳转 this.$router.go()

官方文档:https://cn.vuejs.org/v2/guide/migration-vue-router.html#%E7%BC%96%E7%A8%8B%E5%AF%BC%E8%88%AA

1、返回上一頁


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

2、跳轉至指定頁面路由 


methods:{
  goToLink(){
    this.$router.push('/page1')
}

也可以這樣寫 

this.$router.push({name:'page1'})
 

你可能感兴趣的:(vue学习)