vue-wechat-title在微信中动态设置标题
场景:在用vue开发单页应用时,切换页面时标题没有更新
1.安装:npm install vue-wechat-title --save
2.在入口文件中引入和使用
import VueWechatTitle from "vue-wechat-title";
Vue.use(VueWechatTitle);
3.在路由文件中,配置meta:{title:标题}
4.在App.vue文件中使用
<router-view v-wechat-title="$route.meta.title"></router-view>
或者在页面中使用
<div v-wechat-title="$route.meta.title"></div>