I used vue-cli with webpack to build up the vue project.
Then I installed vue-meta-info to set up the seo.
I want to set up the Page title with the templates and the route name.
However , I cannot get the variable in router.
rotuer/index.js
import Vue from 'vue';
import Router from 'vue-router';
import HelloWorld from '@/components/HelloWorld';
Vue.use(Router);
export default new Router({
mode: 'history',
routes: [
{
path: '/',
name: 'HelloWorld',
component: HelloWorld,
},
],
});
App.vue
<template>
<div id="app">
<router-view/>
</div>
</template>
<script>
export default {
name: 'App',
metaInfo: {
title: "My Website - "+ route.name,
},
};
</script>
2
Answers
You need to make changes title from every component to root component, One way is by
$on .... $emit
,Working fiddle is
Another way is using
$parent
,Working JSFiddle
You can use the router’s
beforeEach()
helper.Example:
routes.js
In
app.js
ormain.js
or whatever your main Javascript file is. Placing the code in one of the aforementioned JS file will allow all pages to update the title accordingly and is a much cleaner way to handle the titles.