前言
更多内容,请访问我的 个人博客。
-
安装依赖
npm install vue-wechat-title --save
-
在mian.js中引入
//设置title import VueWechatTitle from 'vue-wechat-title' Vue.use(VueWechatTitle)
-
在router的index.js的路由中加上参数
{ path: '/login', component: Login, meta: { title: '登录' } }
更多内容,请访问我的 个人博客。
安装依赖
npm install vue-wechat-title --save
在mian.js中引入
//设置title
import VueWechatTitle from 'vue-wechat-title'
Vue.use(VueWechatTitle)
在router的index.js的路由中加上参数
{
path: '/login',
component: Login,
meta: {
title: '登录'
}
}