docs(projects): 文档更新

This commit is contained in:
Soybean
2021-11-10 20:44:43 +08:00
parent 6a543422ff
commit 448d28db2e
15 changed files with 563 additions and 132 deletions

View File

@ -18,13 +18,23 @@ interface RouteMeta {
order?: number;
}
/** 路由配置 */
export type CustomRoute = RouteRecordRaw & { meta: RouteMeta };
/** 路由路径 */
export type RoutePathKey = keyof typeof EnumRoutePath;
/** 菜单项配置 */
export type GlobalMenuOption = MenuOption & {
routeName: string;
routePath: string;
};
/** 登录模块 */
export type LoginModuleType = keyof typeof EnumLoginModule;
/** npm依赖包版本信息 */
export interface VersionInfo {
name: string;
version: string;
}

View File

@ -1,4 +1,3 @@
export * from './business';
export * from './theme';
export * from './common';
export * from './package';

View File

@ -1,4 +0,0 @@
export interface VersionInfo {
name: string;
version: string;
}