ruoyi-plus-soybean/src/enum/route.ts

13 lines
398 B
TypeScript
Raw Normal View History

2021-09-09 12:00:18 +08:00
export enum EnumRoutePaths {
'login' = '/login',
'not-found' = '/exception/404',
'no-permission' = '/exception/403',
'service-error' = '/exception/500',
// 自定义路由
'dashboard-analysis' = '/dashboard/analysis',
'dashboard-workbench' = '/dashboard/workbench',
'exception-403' = '/exception/e403',
'exception-404' = '/exception/e404',
'exception-500' = '/exception/e500'
2021-09-09 12:00:18 +08:00
}