You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/** |
|
* @program: kicc-ui |
|
* @description: 基础页面路由枚举 |
|
* @author: wangxiang4 |
|
* @create: 2022/4/9 |
|
*/ |
|
|
|
export enum PageEnum { |
|
// 项目根路径 |
|
ROOT_HOME = '/', |
|
// 基本登录路径 |
|
BASE_LOGIN = '/login', |
|
// 基本首页路径 |
|
BASE_HOME = '/dashboard', |
|
// 错误页面路径 |
|
ERROR_PAGE = '/exception', |
|
}
|
|
|