mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-09-18 17:46:38 +08:00
16 lines
307 B
TypeScript
16 lines
307 B
TypeScript
const about: AuthRoute.Route = {
|
|
name: 'about',
|
|
path: '/about',
|
|
component: 'self',
|
|
meta: {
|
|
title: '关于',
|
|
requiresAuth: true,
|
|
singleLayout: 'basic',
|
|
permissions: ['super', 'admin', 'user'],
|
|
icon: 'fluent:book-information-24-regular',
|
|
order: 8
|
|
}
|
|
};
|
|
|
|
export default about;
|