修改router/index.js文件 路由条目下面添加meta属性 meta:{ title:'DevOps运维平台' } 示例 使用Vue的全局守卫函数beforeEach,在路由切换前动态修改浏览器标签页名字 router.beforeEach((to,from,next) => { document.title = to.meta.title next() })