feat(tree,menu,docs): 对接目录树三类数据并中文化文档

This commit is contained in:
yuding
2026-01-28 17:19:36 +08:00
parent 3ab9d4b0ea
commit 0b8dcd36fa
32 changed files with 4060 additions and 3302 deletions

View File

@@ -1,6 +1,3 @@
/**
* 菜单项配置接口 (用于简化的对象配置)
*/
export interface MenuItemConfig {
id: string;
label: string;
@@ -11,4 +8,5 @@ export interface MenuItemConfig {
children?: MenuItemConfig[];
disabled?: boolean;
visible?: boolean;
divider?: boolean;
}