Bootstrap

vue项目中修改页面在浏览器中的标题

安装依赖:
npm install vue-wechat-title --save

引入依赖:
Vue.use(require('vue-wechat-title'))

使用一:
<div v-wechat-title="title">
data中配置title变量为'标题'

使用二:
在路由文件中加入
 
    meta: {
      title: '标题'
    }
例如:
  {
    path: '',
    name: 'index',
    component: index,
    meta: {
      title: '办公室'
    }
  },
 

然后在app.vue文件中配置
<router-view v-wechat-title="$route.meta.title" />

 

;