vue router

1
2
3
4
5
6
7
8
9
10
11
12
<router-link to="/foo">Go to Foo</router-link>

this.$route.params

this.$router.go(-1)
this.$router.push('/')

routes: [
// 动态路径参数 以冒号开头
{ path: '/user/:id', component: User }
]
<div>User {{ $route.params.id }}</div>

vue里的路由钩子

欢迎访问我的博客  地址      
https://blog.afacode.top