编程式路由导航
1、作用:不借助实现路由跳转,让路由跳转更加灵活
2、具体编码
javascript
pushShow(p){
this.$router.push({
name:'xiangqing',
query:{id:p.id,title:p.title}
})
},
replaceShow(p){
this.$router.replace({
name:'xiangqing',
query:{id:p.id,title:p.title}
})
}
前进
javascript
this.$router.forward();
后退
javascript
this.$router.back()
可前进可后退
javascript
this.$router.go(2);//前进2步
this.$router.go(-2);//后退2步