wujingjing
2025-04-07 07f5e49d4031f74c296fe01bb79e913c864979e5
1
2
3
4
5
6
7
export interface MenuItemData {
    id: string;
    title: string;
    icon?: string;
    children?: MenuItemData[];
    path?: string;
}