Created MultiSelect.d.ts

pull/12/head
mertsincan 2019-05-29 12:33:31 +03:00
parent ef570467ab
commit cd2f396618
1 changed files with 22 additions and 0 deletions

View File

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