refactor: tree.ts 使用@vben/utils替换

This commit is contained in:
xingyu4j
2025-04-23 17:27:48 +08:00
parent ecf10c0539
commit dccb846bb0
11 changed files with 81 additions and 14 deletions

View File

@@ -1,4 +1,5 @@
// todo @芋艿:公用逻辑
// 已迁移,后续使用 packages/core/base/shared/src/utils/tree.ts 下的方法
interface TreeNode {
[key: string]: any;
children?: TreeNode[];