localhost_oa_front/src/router/constant.ts

15 lines
416 B
TypeScript

export const LOGIN_NAME = 'Login';
export const REDIRECT_NAME = 'Redirect';
export const PARENT_LAYOUT_NAME = 'ParentLayout';
export const PAGE_NOT_FOUND_NAME = 'PageNotFound';
// 路由白名单
export const whiteNameList = [LOGIN_NAME, 'icons', 'error', 'error-404'] as const; // no redirect whitelist
export type WhiteNameList = typeof whiteNameList;
export type WhiteName = (typeof whiteNameList)[number];