Created Dropdown.d.ts

pull/12/head
mertsincan 2019-05-28 15:24:00 +03:00
parent 58bae69fbc
commit 481a0fcbf3
1 changed files with 23 additions and 0 deletions

23
src/components/dropdown/Dropdown.d.ts vendored Normal file
View File

@ -0,0 +1,23 @@
import Vue, { VNode } from 'vue';
export declare class Dropdown extends Vue {
value?: any;
options?: any[];
optionLabel?: string;
optionValue?: any;
optionDisabled?: boolean;
scrollHeight?: string;
filter?: boolean;
filterPlaceholder?: string;
editable?: boolean;
placeholder?: string;
disabled?: boolean;
dataKey?: string;
showClear?: boolean;
tabindex?: string;
$emit(eventName: 'input', value: string): this;
$emit(eventName: 'change', e: { originalEvent: Event, value: string }): this;
$slot: {
option: VNode[];
}
}