1.每個頁面設(shè)置相同的標題
index.html:
直接修改title標簽里面的標題
2.每個頁面設(shè)置不相同的標題
//使用vue-wechat-title插件對頁面標題進行設(shè)置
1)炒考、安裝模塊
命令:npm install vue-wechat-title --save
2)、在main.js中引入模塊
import VueWechatTitle from 'vue-wechat-title';
Vue.use(VueWechatTitle)
3)、在路由中加title
在router文件夾下的index.js中慎式,每個路由里添加meta耸彪,里面加入title
{
path: '/about',
name: 'about',
component: about,
meta: {
title: '關(guān)于'
}
}
4)抢韭、App.vue中修改路由出口router-view如下:
<router-view v-wechat-title="$route.meta.title"/>