UNPKG

t-fighting-design

Version:

Fighting design can quickly build interactive interfaces in vue3 applications, which looks good.

10 lines (7 loc) 216 B
export type { TreePropsType } from './props' export interface TreeDataItemInterface { label: string children?: TreeDataItemInterface[] level?: number } export type TreeDataInterface = TreeDataItemInterface[]