标签:document 前置 title tle enter uid http reac ide
vue-router
提供的导航守卫主要用来监听监听路由的进入和离开的.vue-router
提供了beforeEach
和afterEach
的钩子函数, 它们会在路由即将改变前和改变后触发.// 前置守卫(guard)
router.beforeEach((to, from, next) => {
// 从 from 跳转到 to
document.title = to.matched[0].meta.title
next()
})
// 后置钩子(hook)
router.afterEach((to, from) => {
//如果是后置钩子, 也就是afterEach, 不需要主动调用next()函数.
})
to:
即将要进入的目标的路由对象.from:
当前导航即将要离开的路由对象.next:
调用该方法后, 才能进入下一个钩子.标签:document 前置 title tle enter uid http reac ide
原文地址:https://www.cnblogs.com/landuo629/p/12538435.html