mirror of
https://github.com/m-xlsea/ruoyi-plus-soybean.git
synced 2025-09-24 07:49:47 +08:00
refactor(projects): 完善路由配置
This commit is contained in:
@ -1,10 +1,16 @@
|
||||
import { EnumRoutePaths, EnumLoginModule } from '@/enum';
|
||||
import { EnumRoutePath, EnumLoginModule } from '@/enum';
|
||||
|
||||
/** 路由描述 */
|
||||
export interface RouteMeta {
|
||||
/** 路由名称 */
|
||||
title?: string;
|
||||
/** 页面100%视高 */
|
||||
fullPage?: boolean;
|
||||
/** 作为菜单 */
|
||||
asMenu?: boolean;
|
||||
/** 菜单和面包屑对应的图标 */
|
||||
icon?: string;
|
||||
}
|
||||
|
||||
export type RoutePathKey = keyof typeof EnumRoutePaths;
|
||||
export type RoutePathKey = keyof typeof EnumRoutePath;
|
||||
export type LoginModuleType = keyof typeof EnumLoginModule;
|
||||
|
Reference in New Issue
Block a user