html中的title
安装:npm install vue-wechat-title --save
1.在mian.js中
//网页title
import VueTitle from 'vue-wechat-title'
Vue.use(VueTitle);
2. 路由中加下 title
{
path: '/',
component: Index,
meta: {
title: '首页'
}
}
3. 在app.vue 中修改 router-view ,加入他的这个组件
<div id="app" v-wechat-title="$route.meta.title">
<router-view name="Head"></router-view>
<router-view name="Main"></router-view>
<router-view name="Foot"></router-view>
</div>