d.ts for ContextMenu

pull/132/head
cagataycivici 2019-12-04 16:59:59 +03:00
parent 64a9aa36e6
commit a1c1f6369f
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
import Vue from 'vue';
export declare class ContextMenu extends Vue {
popup?: boolean;
model?: any[];
appendTo?: string;
autoZIndex?: boolean;
baseZIndex?: number;
toggle(event: Event): void;
show(event: Event, target?: any): void;
hide(): void;
}