vue中實現路由跳轉的方式有:1.通過router-link標簽跳轉;2.通過this.$router.push()事件跳轉;3.通過this.$router.go(n)事件跳轉;
vue中實現路由跳轉的方式有以下幾種
1.通過router-link標簽跳轉
// 配置路由path: '/user/:id'
<router-link :to="'/user/' + this.id"> <router-link/>
// 接收參數
this.$route.params.id
2.通過this.$router.push()事件跳轉
1)跳轉字符串
this.$router.push('/home')
2)跳轉對象
this.$router.push({path:'/home'})
3.通過this.$router.go(n)事件跳轉
this.$router.go(1)// 后退一步記錄
this.$router.go(-1)
// 前進三步記錄
this.$router.go(3)