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 } })
推薦學習:php培訓
以上是vue.js怎麼修改頁面標題的詳細內容。更多資訊請關注PHP中文網其他相關文章!