和beforeEach()相比,这个router方法是在路由进入之后触发,并且少了一个参数next(),不需要调用next进入
Vue.afterEach((to,form)=>{})在跳转之后执行
router.afterEach((to) => {
if (to.meta?.label) {
// 设置页面`title`
document.title = `一立科技 - ${to.meta.label}`;
}
});
和beforeEach()相比,这个router方法是在路由进入之后触发,并且少了一个参数next(),不需要调用next进入
Vue.afterEach((to,form)=>{})在跳转之后执行
router.afterEach((to) => {
if (to.meta?.label) {
// 设置页面`title`
document.title = `一立科技 - ${to.meta.label}`;
}
});