vue路由跳转 返回上一级 this.$router.go(-1) 和返回到指定页面this.$router.push('/home')

Posted zyyweb

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue路由跳转 返回上一级 this.$router.go(-1) 和返回到指定页面this.$router.push('/home')相关的知识,希望对你有一定的参考价值。

1,点击返回上一页
<button @click="goback">goback</button>
methods:{
goback(){}
this.$router.go(-1)
}
2,点击跳转到/Foo2页面
<button @click="ToLink1">goback</button>
ToLink1(){
this.$router.push(‘/foo2‘) 最常用
或者this.$router.push({name:‘Foo1‘})对象的方法
 







以上是关于vue路由跳转 返回上一级 this.$router.go(-1) 和返回到指定页面this.$router.push('/home')的主要内容,如果未能解决你的问题,请参考以下文章

Vue路由跳转页面后-新页面没有位于顶部-案例

Vue路由this.$router.push跳转页面不刷新

Vue--路由带参跳转--/login?id=10--接收this.$route.query.id

vue相同路由跳转强制刷新该路由组件

Vue Router 路由中 this.$router 与this.$route区别

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