vue 地址栏标题对应路由标题

239 阅读1分钟

添加路由守卫

router.beforeEach((to, from, next) => {
  document.title = to.meta.title;
  next()
})