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'})对象的方法
 
posted @ 2018-10-14 17:47  程序-猿猿  阅读(68405)  评论(0编辑  收藏  举报