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()
})
上一篇 下一篇

猜你喜欢

热点阅读