1、安装标题的依赖库
npm install vue-meta
2、在路由中添加meta
{
path:'/zzIndex',
name:'zzIndex',
component:()=>import('../views/zhongzhi/index.vue'),
meta:{
title:'中支首页'
}
},
3、在理由中替换标题 router/index.js
router.beforeEach((to,from,next)=>{
if(to.meta && to.meta.title){
document.title = to.meta.title
}
next()
})
上一篇:
前端js导出数据到excel文件里...
下一篇:
vue3做新闻列表无缝滚动...