edu/pc/constants/menu.ts

50 lines
1.1 KiB
TypeScript
Raw Normal View History

2025-11-28 07:29:47 +00:00
export const NAVBAR = [
{
name: '首页',
path: '/'
},
{
name: '管理后台',
path: '/admin',
component: 'admin'
}
]
export const SIDEBAR = [
{
module: 'personal',
hidden: true,
children: [
{
name: '个人中心',
path: '/user',
children: [
{
name: '个人信息',
path: 'info'
},
{
name: '我的收藏',
path: 'collection'
},
{
name: '新生报名',
path: 'enrollment'
}
]
},
{
name: '账户设置',
path: '/account',
children: [
{
name: '账户安全',
path: 'security'
}
]
}
]
}
]