vue.js get route name in App.vue
问题 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