vue 动态改变meta title 不知道起什么名字比较酷 2021-03-25 165 阅读1分钟 在main.js中加入如下代码: router.beforeEach((to, from, next) => { /* 路由发生变化修改页面title */ if (to.meta.title) { document.title = to.meta.title } next(); })