vue.js修改页面标题的方法:1、在路由文件index.js中给需要的路由添加title;2、在路由的beforeEach拦截器中进行处理即可。
本文操作环境:windows10系统、vue.js 2.9、thinkpad t480电脑。
在打开一个网页的时候,网页会有一个默认的标题,当我们加载不同的页面内容时标题需要进行改变,例如从首页到详情页,再从详情页到个人中心等。
vue中有很多种方式来帮助我们修改网页标题,我们这里介绍下两种方案。
方案一(不推荐):
结合业务直接在Vue生命周期函数 created 中,给 document.title赋值。
<script>
import axios from 'axios'
export default {
created () {
document.title = '功能授权'
}
}
</script>
方案二使用Vue-Router的beforeEach拦截
项目中使用了Vue Router,在路由文件 index.js 中给需要的路由添加 title。
routes: [{
path: '/',
name: 'home',
component: () => import('@/pages/home/index'),
meta:{
title: '首页',
keepAlive: true
}
},
{
path: '/person/auth,
name: 'personAuth',
component: () => import('@/pages/person/auth),
meta:{
title: '个人中心',
keepAlive: false
}
}
]
在路由的beforeEach 拦截器里处理
router.beforeEach((to, from, next) => { /* 路由发生变化修改页面title */ if (to.meta.title) { document.title = to.meta.title } })
以上就是vue.js怎么修改页面标题的详细内容,转载自php中文网
发表评论 取消回复