13 lines
228 B
TypeScript
13 lines
228 B
TypeScript
|
// 默认option选项
|
||
|
export interface Option {
|
||
|
value: string | number | boolean | undefined;
|
||
|
label: string | undefined;
|
||
|
}
|
||
|
|
||
|
// 属性结构
|
||
|
export interface TreeData {
|
||
|
value: string;
|
||
|
label: string;
|
||
|
children?: TreeData[];
|
||
|
}
|