Created Listbox.d.ts
parent
5ea0cfce34
commit
1bee06f912
|
@ -0,0 +1,20 @@
|
||||||
|
import Vue, { VNode } from 'vue';
|
||||||
|
|
||||||
|
export declare class Listbox extends Vue {
|
||||||
|
value?: any;
|
||||||
|
options?: any[];
|
||||||
|
optionLabel?: string;
|
||||||
|
optionValue?: any;
|
||||||
|
optionDisabled?: boolean;
|
||||||
|
listStyle?: string;
|
||||||
|
disabled?: boolean;
|
||||||
|
dataKey?: string;
|
||||||
|
multiple?: boolean;
|
||||||
|
metaKeySelection?: boolean;
|
||||||
|
filter?: boolean;
|
||||||
|
$emit(eventName: 'input', value: any): this;
|
||||||
|
$emit(eventName: 'change', e: { originalEvent: Event, value: any }): this;
|
||||||
|
$slots: {
|
||||||
|
option: VNode[];
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue