feat: 文件夹树形列表实现

This commit is contained in:
zhengkunwang223
2022-08-24 17:34:21 +08:00
parent 58ea83c030
commit 8faff6d386
8 changed files with 121 additions and 73 deletions

View File

@@ -21,4 +21,11 @@ export namespace File {
search?: string;
expand: boolean;
}
export interface FileTree {
name: string;
isDir: Boolean;
path: string;
children?: FileTree[];
}
}