vue 跳转路由修改页面title为对应路由名字
vue-router 跳转页面的时候,修改页面的title为对应的路由routes: [{// 默认的首页path: '/',name: 'Home',component: Home,meta: {index: 0,title: '首页'}},...
·
vue-router 跳转页面的时候,修改页面的title为对应的路由
routes: [
{
// 默认的首页
path: '/',
name: 'Home',
component: Home,
meta: {
index: 0,
title: '首页'
}
},
{
// 选择城市
path: '/city',
name: 'City',
component: City,
meta: {
index: 1,
title: '选择城市'
}
}
]
在main.js中获取路由的title,去替换为页面的title
添加一个导航守卫, 拦截和替换路由中配置了title名的路由
router.beforeEach((to, from, next) => {
/* 路由发生变化修改页面title */
if (to.meta.title) {
document.title = to.meta.title
}
next()
})
更多推荐
已为社区贡献7条内容
所有评论(0)