[Vuejs]-ViewBag.Title from Vue router

1👍

Just added this in main.js:

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

And this in all routes:

meta: { 
    title: 'Page Title',
}

Thank you all for your help.

2👍

You need to define title attribute under metaTags in where you define route please refer an example for more details.
https://alligator.io/vuejs/vue-router-modify-head/

Leave a comment