26.导航守卫
2019-11-20 本文已影响0人
最爱喝龙井
{
path: '/User/:userId',
component: User,
meta: {
title: '用户'
},
},
{
path: '/profile',
component: Profile,
meta: {
title: '档案'
},
}
router.beforeEach((to, from, next) => {
document.title = to.matched[0].meta.title;
next()
})