路由守卫_后置

使用方法

1
2
3
4
5
6
7
8
9
10
// 全局后置路由守卫——初始化时执行、每次路由切换之后被调用
router.afterEach((to,from) => {
console.log('afterEach',to,from)
if(to.meta.title){
document.title = to.meta.title //修改网页的title
}else{
document.title = 'vue_test'
}

})