vue cli2.0单页面title修改方法
时间:2021-01-28 10:26:40|栏目:vue|点击: 次
一、npm install vue-wechat-title --save
执行命令
二、在main.js中添加
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="$router.meta.title">
总结