d.ts for Tree
parent
ee484079f7
commit
7a5d70352c
|
@ -1,6 +1,6 @@
|
|||
import Vue, {VNode} from 'vue';
|
||||
|
||||
export declare class OrderList extends Vue {
|
||||
export declare class OrganizationChart extends Vue {
|
||||
value?: any;
|
||||
selectionKeys?: any;
|
||||
selectionMode?: string;
|
||||
|
|
|
@ -0,0 +1,22 @@
|
|||
import Vue, {VNode} from 'vue';
|
||||
|
||||
export declare class Tree extends Vue {
|
||||
value?: any;
|
||||
expandedKeys?: any;
|
||||
selectionKeys?: any;
|
||||
selectionMode?: string;
|
||||
metaKeySelection?: string;
|
||||
loading?: boolean;
|
||||
loadingIcon?: string;
|
||||
filter?: boolean;
|
||||
filterBy?: string;
|
||||
filterMode?: string;
|
||||
filterPlaceholder?: string;
|
||||
$emit(eventName: 'node-select', node: any): this;
|
||||
$emit(eventName: 'node-unselect', node: any): this;
|
||||
$emit(eventName: 'node-expand', node: any): this;
|
||||
$emit(eventName: 'node-collapsed', node: any): this;
|
||||
$slots: {
|
||||
[key: string]: VNode[];
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue