美文网首页
vue-cli2.0单页面title修改

vue-cli2.0单页面title修改

作者: Elvis_645e | 来源:发表于2018-06-07 11:23 被阅读0次

    一、npm install vue-wechat-title --save  执行命令

    二、在main.js中添加

        import VueWechatTitle from 'vue-wechat-title';

            Vue.use(VueWechatTitle);

            Vue.config.productionTip= false

    三、在router/index.js文件中添加  

        routes: [{  path: '/',redirect: 'Home'  },{ path: '/Home',name: 'Home',component: Home,

        meta:{

          title:'银行开户'

        }},],

    四、在app.vue 中修改 router-view  修改为:<router-view v-wechat-title="$route.meta.title"/>

    运行项目,大功告成

    相关文章

      网友评论

          本文标题:vue-cli2.0单页面title修改

          本文链接:https://www.haomeiwen.com/subject/alawsftx.html