DEV Community

Discussion on: A simple way to keep your Vue page title in sync with the router

Collapse
 
dinsmoredesign profile image
Derek D • Edited

Navigation guard inside your router makes more sense structurally IMO, but each work well:

router.beforeEach((to, from, next) => {
  document.title = to.meta.title || 'Your Website Title');
  next();
});
Enter fullscreen mode Exit fullscreen mode

;)