vue路由跳转时更改页面title

Posted mengyage

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue路由跳转时更改页面title相关的知识,希望对你有一定的参考价值。

一、router文件夹下的index文件中给每个path添加meta:{}:

export default new Router({
routes: [
{
path: ‘/‘,
name: ‘index‘,
component: index,
meta: {
title: ‘title1‘
}
},
{
path: ‘/studentInfo‘,
name: ‘studentInfo‘,
component: studentInfo,
meta: {
title: ‘title2‘
}
}   
]
})
二、js入口文件main.js中添加代码:

router.beforeEach((to, from, next) => {
/* 路由发生变化修改页面title */
if (to.meta.title) {
document.title = to.meta.title
}
next()
})
---------------------
作者:web_xyk
来源:CSDN
原文:https://blog.csdn.net/web_xyk/article/details/80451561
版权声明:本文为博主原创文章,转载请附上博文链接!

以上是关于vue路由跳转时更改页面title的主要内容,如果未能解决你的问题,请参考以下文章

vue在路由跳转时,如何让跳转的页面显示在最顶端

vue路由发生了跳转,但页面没有跳转成功,怎么办呢?

vue路由跳转时判断用户是否登录功能

Vue的router路由跳转传参——实现跳转时url不显示参数

Vue路由this.$router.push跳转页面不刷新

vue路由跳转之当前页面路由跳转并动态改变页面的title