UNPKG

@zuiwoxing/posisi

Version:

一款基于typescript 前端控制组件,包括(IOC,AOP,Feign,Logger,Util等)

29 lines (28 loc) 572 B
/** *@desc 通用菜单树 *@author liudejian *@date 2023-11-25 13:34 **/ export declare class CommonMenuTree { id?: number; pid?: number; path?: string; name?: string; redirect?: string; isVirtual?: boolean; level?: number; component?: string; orderNum?: number; children?: Array<CommonMenuTree>; meta?: Meta; } export declare class Meta { icon?: string; title?: string; embedded?: boolean; isLink?: boolean; isHide?: boolean; isKeepAlive?: boolean; isAffix?: boolean; isIframe?: boolean; }