vue改变单页面应用title 4kachill 2021-04-25 148 阅读1分钟 主要代码: const router = [ { path: '/home', name: 'name', meta: { title: "首页" } } ]; router.beforeEach((to, from, next)=>{ document.title = to.meta.title; next(); })