1. 程式人生 > >H5標題元件VUE-WECHAT-TITLE

H5標題元件VUE-WECHAT-TITLE

  HTML的標題元件~~ 

    1.安裝外掛

  cnpm install vue-wechat-title --save

   2.在main.js中引入

  Vue.use(require('vue-wechat-title'))

   3.在路由裡新增title屬性例: 

  { 

   path: '/', 
     component: Index, 
     meta: { 
           title: '首頁' 
  } 

 4.在app.vue中修改router-view,加入他的這個元件
  <div id="app" >

   <router-view v-wechat-title="$route.meta.title"> </router-view>

  </div>