feat(projects): 添加固定路由

This commit is contained in:
Soybean
2021-09-09 12:00:18 +08:00
parent 638a8e9856
commit ff4a09c452
14 changed files with 204 additions and 90 deletions

View File

@ -1,3 +1,4 @@
export { ContentType, EnumDataType } from './common';
export { EnumAnimate } from './animate';
export { EnumNavMode, EnumNavTheme } from './theme';
export { EnumRoutePaths } from './route';

View File

@ -1 +1,6 @@
export enum EnumRoutes {}
export enum EnumRoutePaths {
'login' = '/login',
'not-found' = '/404',
'no-permission' = '/403',
'service-error' = '/500'
}