vr-uniapp/src/components/common/upload/index.ts

10 lines
161 B
TypeScript

// 分类树结构
type Tree = {
id: number | string;
name: string;
path: string;
is_enable: boolean;
sort: number;
children: Tree[];
};