mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-10-12 12:53:42 +08:00
18 lines
370 B
TypeScript
18 lines
370 B
TypeScript
const about1: AuthRoute.Route = {
|
|
name: 'about',
|
|
path: '/about',
|
|
component: 'self',
|
|
meta: {
|
|
title: '关于',
|
|
i18nTitle: 'message.routes.about',
|
|
requiresAuth: true,
|
|
keepAlive: true,
|
|
singleLayout: 'basic',
|
|
permissions: ['super', 'admin', 'user'],
|
|
icon: 'fluent:book-information-24-regular',
|
|
order: 10
|
|
}
|
|
};
|
|
|
|
export default about1;
|