1.在router的index.js配置映射关系中添加meta:{title:'首页'};
{ path:'/profile', component:Profile, meta:{ title:'个人' }
2、使用 router.beforeEach方法:
router.beforeEach( (to,from,next) => { document.title = to.matched[0].meta.title next(); })