18 lines
360 B
TypeScript
18 lines
360 B
TypeScript
const about: AuthRoute.Route = {
|
|
name: 'about',
|
|
path: '/about',
|
|
component: 'self',
|
|
meta: {
|
|
title: '关于',
|
|
i18nTitle: 'routes.about',
|
|
requiresAuth: true,
|
|
keepAlive: true,
|
|
singleLayout: 'basic',
|
|
permissions: ['super', 'admin', 'user'],
|
|
icon: 'fluent:book-information-24-regular',
|
|
order: 10
|
|
}
|
|
};
|
|
|
|
export default about;
|