1 修改標(biāo)題
1 首先在route里面給每個路由加上meta屬性
{
path: '/',
name: 'home',
component: HomeView,
meta: {
title: '首頁'
}
}
2 在main.js里面加上導(dǎo)航守衛(wèi)
router.beforeEach((to, from, next) => {
window.document.title = to.meta.title == undefined ? '默認(rèn)標(biāo)題' : to.meta.title
next();
})
2 修改logo
1 在public文件夾中添加logo .ico格式
2 在index.html 中替換或者添加
<link rel="icon" href="./public/newslogo.ico" />