vue 改变路由动态改变title
2019-06-11 本文已影响0人
真是个非常帅气的昵称呢
router.beforeEach((to, from, next) => {
const title = to.meta && to.meta.title
if (title) {
document.title = title
}
next()
})
router.beforeEach((to, from, next) => {
const title = to.meta && to.meta.title
if (title) {
document.title = title
}
next()
})