最近在重温vue全家桶,再看一遍感觉记忆更深刻,所以专门记录一下(本文vue-router版本为v3.x)。
是一个功能性组件,用于渲染路径匹配到的视图组件。可以配合
和
使用。如果两个一起用,要确保在内层使用
。
如果
设置了名称,则会渲染对应的路由配置中 components
下的相应组件。
标签支持用户在具有路由功能的应用中(点击)导航。
属性 | 类型 | 说明 |
---|---|---|
to | String/Object | 目标路由/目标位置的对象 |
replace | Boolean | 不留下导航记录 |
append | Boolean | 在当前路径后加路径 /a => /a/b |
tag | String | 指定渲染成何种标签 |
active-class | String | 激活时使用的Class |
根路由重定向到login
const router = new VueRouter({
routes: [
{ path: '/', redirect: '/login' }
]
})
动态返回重定向目标
const router = new VueRouter({
routes: [
{ path: '/a', redirect: to => {
// 方法接收 目标路由 作为参数
// return 重定向的 字符串路径/路径对象
}}
]
})
路由访问/b
时,URL
会保持为/b
,但是路由匹配则为/a
const router = new VueRouter({
routes: [
{ path: '/a', component: A, alias: '/b' }
]
})
使用props
,避免和$route
过度耦合,这样就可以直接在组件中使用props
接收参数
在路由后面写上参数,并设置props
为true
{
path: '/vuex/:id',
name: 'Vuex',
component: () => import('@/view/vuex'),
props: true,
mate: {
title: 'vuex'
}
}
设置跳转需要传递的参数params
跳转
toNext() {
this.$router.push({
name: 'Vuex',
params: {
id: '99999'
}
})
}
在跳转过去的页面,通过props
或者this.$params
取参
props: {
id: {
type: String,
default: ''
}
}
this.$params.id
在路由中设置props
为对象,携带静态数据
{
path: '/vuex',
name: 'Vuex',
component: () => import('@/view/vuex'),
props: {
id: '99999'
},
mate: {
title: 'vuex'
}
}
跳转
跳转
toNext() {
this.$router.push({
name: 'Vuex'
})
}
在跳转过去的页面,通过props
或者this.$params
取参
props: {
id: {
type: String,
default: ''
}
}
this.$params.id
注意:只适用于静态数据
先在路由中设置props
为Function
,return
一个对象,不管是query
传参还是params
传参,都可以转为props
{
path: '/vuex',
name: 'Vuex',
component: () => import('@/view/vuex'),
props: route => ({
id: route.query.id,
age: route.params.age
}),
mate: {
title: 'vuex'
}
}
跳转
跳转
toNext() {
this.$router.push({
name: 'Vuex',
query: {
id: '999999'
},
params: {
age: '20'
}
})
}
在跳转过去的页面,通过props
或者this.$route.params / this.$route.query
取参
props: {
id: {
type: String,
default: ''
},
age: {
type: String,
default: ''
}
}
this.$route.query
this.$route.params
路由守卫主要用来通过跳转或取消的方式守卫导航。
当一个导航触发时,全局前置守卫按照创建顺序调用。守卫是异步解析执行,此时导航在所有守卫解析完之前一直处于等待中。
参数 | 说明 |
---|---|
to | 即将要进入的目标路由对象 |
from | 当前导航正要离开的路由 |
next | 回调方法 |
next用法如下
语法 | 说明 |
---|---|
next() | 进行下一个钩子 |
next(false) | 中断导航,URL如已改,则重置到from的地址 |
next(’/’) | 中断当前跳转并到其他地址,可设置路由对象 |
next(error) | 导航终止并传递错误给onError() |
const router = new VueRouter({ ... })
router.beforeEach((to, from, next) => {
// ...
})
2.5.0新增,和beforeEach
类似,区别是在导航被确认之前,同时在所有组件内守卫和异步路由组件被解析之后,解析守卫就被调用。
router.eforeResolve((to, from, next) => {
// ...
})
后置守卫不会接受next
函数也不会改变导航本身
router.afterEach((to, from) => {
// ...
})
可以在路由配置上直接定义专属的beforeEnter
守卫,与全局前置守卫的方法参数是一样的。
const router = new VueRouter({
routes: [
{
path: '/foo',
component: Foo,
beforeEnter: (to, from, next) => {
// ...
}
}
]
})
该守卫不能访问this
,因为守卫在导航确认前被调用,因此即将登场的新组件还没被创建。可以通过传一个回调给next
来访问组件实例。在导航被确认的时候执行回调,并且把组件实例作为回调方法的参数。
const Footer = {
template: `...`,
beforeRouteEnter(to, from, next) {
next(vm => {
// 通过 `vm` 访问组件实例
})
}
}
在当前路由改变,但是该组件被复用时调用,可以访问组件实例this
。
const Foo = {
template: `...`,
beforeRouteUpdate(to, from, next) {
this.name = to.params.name
next()
}
}
导航离开该组件的对应路由时调用,通常用来禁止用户在还未保存修改前突然离开。可以通过next(false)
来取消。
const Foo = {
template: `...`,
beforeRouteLeave(to, from, next) {
const answer = window.confirm('确认要离开吗')
if (answer) {
next()
} else {
next(false)
}
}
}
beforeRouteLeave
守卫。beforeEach
守卫。beforeRouteUpdate
守卫 (2.2+)。beforeEnter
。beforeRouteEnter
。beforeResolve
守卫(2.5+)。afterEach
钩子。DOM
更新。beforeRouteEnter
守卫中传给next
的回调函数,创建好的组件实例会作为回调函数的参数传入。定义路由的时候可以配置meta对象字段,用来存储每个路由对应的信息。通过this.$route.meta
来访问,或者在路由守卫中通过to.meta
和from.meta
访问。
const router = new VueRouter({
routes: [
{
path: '/index',
name: 'Index',
component: () => import('@/view/index'),
meta: {
title: '首页',
rolu: ['admin', 'boss']
}
}
]
})
只需要使用transition
标签包裹住router-view
标签即可,动画效果可以自己定义,参考transition
组件的用法。也可以在父组件或者app.js
中使用watch
监听$route
变化,根据不同路由替换transition
组件的name
属性,实现不同的动画效。
监听
watch: {
'$route' (to, from) {
const toD = to.path.split('/').length
const fromD = from.path.split('/').length
this.transitionName = toD < fromD ? 'slide-right' : 'slide-left'
}
}
当创建Router
实例时,可以提供一个scrollBehavior
方法,并接收to
和from
路由对象。第三个参数savedPosition
只有通过浏览器的前进/后退按钮触发时才可用。
const router = new VueRouter({
mode: 'hash',
routes,
scrollBehavior(to, from, savedPosition) {
if (savedPosition) {
return new Promise((resolve, reject) => {
setTimeout(() => {
resolve(savedPosition)
}, 1000)
})
} else {
return { x: 0, y: 0 }
}
}
})
首先导入Vue
和vue-router
,然后使用router
,定义路由信息集合,每个路由都是一个对象,对象拥有如下属性
属性 | 类型 | 值 |
---|---|---|
path | String | 组件路径信息 |
name | String | 组件命名 |
component | Function | 组件 |
mate | Object | 元信息 |
children | Object | 子路由 |
redirect | String | 重定向 |
props | Boolean/Object/Function | 参数传递 |
具体代码如下:
import Vue from 'vue'
import VueRouter from 'vue-router'
Vue.use(VueRouter)
const routes = [
{
path: '/',
redirect: '/index'
},
{
path: '/index',
name: 'Index',
component: () => import(/* webpackChunkName: "index" */ '@/view/index'),
mate: {
title: '首页',
auth: false
}
},
{
path: '/login',
name: 'Login',
component: () => import(/* webpackChunkName: "login" */ '@/view/login'),
meta: {
title: '登录',
auth: false
},
children: [
{
path: 'children',
name: 'Children',
component: () => import(/* webpackChunkName: "children" */ '@/view/children'),
mate: {
title: '嵌套的子路由',
auth: false
}
}
]
}
]
const router = new VueRouter({
mode: 'hash',
routes
})
export default router
注意:嵌套子路由必须在被嵌套的页面放置
标签。
如果看了觉得有帮助的,我是@鹏多多i,欢迎 点赞 关注 评论;
END
公众号
往期文章
个人主页