primevue
Version:
[](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/primevue) [![Join the chat at https://gitter.im/primefaces/primevu
22 lines (21 loc) • 622 B
TypeScript
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-collapse', node: any): this;
$slots: {
[key: string]: VNode[];
}
}