vue3动态修改页面标题
router/index.js 增加如下代码
//动态修改页面title router.beforeEach((to, from, next) => { window.document.title = to.meta.title next() })