Vue中动态设置页面title

前言

更多内容,请访问我的 个人博客。


  1. 安装依赖

    npm install vue-wechat-title --save
    复制代码
  2. 在mian.js中引入

    //设置title
    import VueWechatTitle from 'vue-wechat-title'
    Vue.use(VueWechatTitle)
    复制代码
  3. 在router的index.js的路由中加上参数

     {
         path: '/login',
         component: Login,
         meta: {
            title: '登录'
         }
     }
    复制代码

转载于:https://juejin.im/post/5c81c7536fb9a049ff4eead7

你可能感兴趣的:(Vue中动态设置页面title)