提交 3c53c1c8 编写于 作者: 江南一点雨

解决 Vue 前端 404 问题

上级 fd6ba032
......@@ -13,28 +13,31 @@ export default new Router({
path: '/',
name: 'Login',
component: Login,
hidden:true
hidden: true
}, {
path: '/home',
name: 'Home',
component: Home,
hidden:true,
meta:{
roles:['admin','user']
hidden: true,
meta: {
roles: ['admin', 'user']
},
children:[
children: [
{
path: '/chat',
name: '在线聊天',
component: FriendChat,
hidden:true
},{
hidden: true
}, {
path: '/hrinfo',
name: '个人中心',
component: HrInfo,
hidden:true
hidden: true
}
]
}, {
path: '*',
redirect: '/home'
}
]
})
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册