标签:default 路径 标题 class pre main 小图标 children exp
router下index.js文件设置头信息
export default new Router({
mode: 'history',
routes: [
{
path: '/login',
name: 'login',
component: Login,
meta: {
title: '登录页面'
}
},
{
path: '/',
name: 'home',
component: Home,
meta: {
title: '首页'
},
children: [
{
name: 'users',
path: 'users',
component: Users,
meta: {
title: '用户管理'
},
...
]
}
]
})
在main.js配置
import router from './router'
router.beforeEach((to, from, next) => {
/* 路由发生变化修改页面title */
if (to.meta.title) {
document.title = to.meta.title
}
next()
})
在index.html引入:
<link rel="icon" href="static/fav.png" type="image/x-icon">
static/fav.png为图片路径。
标签:default 路径 标题 class pre main 小图标 children exp
原文地址:https://www.cnblogs.com/xujunkai/p/12327044.html