Vue.directive('title', { inserted: function (el, binding) { document.title = el.dataset.title } }) const routes = [ { path: '/a', component: { template: '内容aaaa' } }, { path: '/b', component: { template: '内容bbbb' } } ] const router = new VueRouter({ routes }) new Vue({ router, el: '#app' })