Created SelectButton.d.ts

pull/12/head
mertsincan 2019-05-29 13:53:16 +03:00
parent 2cc99e7466
commit ac6292adb3
1 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,18 @@
import Vue, { VNode } from 'vue';
export declare class SelectButton extends Vue {
value?: any;
options?: any[];
optionLabel?: string;
optionValue?: any;
optionDisabled?: boolean;
multiple?: boolean;
disabled?: boolean;
dataKey?: string;
$emit(eventName: 'input', value: any): this;
$emit(eventName: 'focus', event: Event): this;
$emit(eventName: 'blur', event: Event): this;
$slots: {
option: VNode[];
}
}