import { FC, ReactNode } from "react"; export interface DageRouteItem { title: string; path: string; Component?: FC; /** 重定向地址 */ redirect?: string; /** * 是否在菜单隐藏 * @default false */ hide?: boolean; icon?: ReactNode; children?: DageRouteItem[]; }