mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-12-24 21:40:22 +08:00
feat(projects): 新增静态路由
This commit is contained in:
15
src/router/modules/about.ts
Normal file
15
src/router/modules/about.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
const about: AuthRoute.Route = {
|
||||
name: 'about',
|
||||
path: '/about',
|
||||
component: 'self',
|
||||
meta: {
|
||||
title: '关于',
|
||||
requiresAuth: true,
|
||||
singleLayout: 'basic',
|
||||
permissions: ['super', 'admin', 'test'],
|
||||
icon: 'fluent:book-information-24-regular',
|
||||
order: 7,
|
||||
},
|
||||
};
|
||||
|
||||
export default about;
|
||||
Reference in New Issue
Block a user