Created SplitButton.d.ts

pull/12/head
mertsincan 2019-05-29 14:07:43 +03:00
parent 6e3ffd875a
commit 8cb296f9d8
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
import Vue from 'vue';
export declare class SplitButton extends Vue {
label?: string;
icon?: string;
model?: any[];
disabled?: boolean;
tabindex?: string;
autoZIndex?: boolean;
baseZIndex?: number;
$emit(eventName: 'click', event: Event): this;
}