vue中给每个页面顶部设置title
实现思路很简单:就是利用路由的导购守卫beforeEach在每次页面跳转前更改对应的title1.首先在route里面给每个路由加上meta属性2.在main.js里面加上导航守卫router.beforeEach((to,form,next) => {window.document.title = to.meta.title == undefined?'默认标题':to.meta.
·
实现思路很简单:就是利用路由的导购守卫beforeEach在每次页面跳转前更改对应的title
1.首先在route里面给每个路由加上meta属性
2.在main.js里面加上导航守卫
router.
beforeEach((
to,
form,
next)
=> {
window.
document.
title =
to.
meta.
title ==
undefined?
'默认标题':
to.
meta.
title
next()
})
更多推荐
已为社区贡献8条内容
所有评论(0)