Vue2动态切换网页标题

在路由文件中实现

1
2
3
4
5
6
7
const routes = [
{
path: '/home',
compontent: Home,
meta: {title: '首页'}
}
]
1
2
3
4
router.afterEach((to, from) => {
/* 网页标题 */
document.title = to.meta.title
})