UNPKG

yuang-framework-ui-pc

Version:

yuang-framework-ui-pc Library

22 lines (17 loc) 412 B
import type { ElTreeV2Props } from '../ele-app/el'; /** * 多选标签显示策略 */ export type ShowCheckedStrategy = 'all' | 'parent' | 'child'; /** * 树配置选项 */ export type TreeOption = Required<Exclude<ElTreeV2Props['props'], undefined>>; /** * 树数据 */ export type TreeData = Exclude<ElTreeV2Props['data'], undefined>; /** * 树数据项 */ export type DataItem = TreeData[number];