mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-11 01:42:34 +00:00
25 lines
No EOL
725 B
TypeScript
Executable file
25 lines
No EOL
725 B
TypeScript
Executable file
import Vue, { VNode } from 'vue';
|
|
|
|
export declare class Listbox extends Vue {
|
|
modelValue?: any;
|
|
options?: any[];
|
|
optionLabel?: string;
|
|
optionValue?: any;
|
|
optionDisabled?: boolean;
|
|
listStyle?: string;
|
|
disabled?: boolean;
|
|
dataKey?: string;
|
|
multiple?: boolean;
|
|
metaKeySelection?: boolean;
|
|
filter?: boolean;
|
|
filterPlaceholder?: string;
|
|
filterLocale?: string;
|
|
ariaLabelledBy?: string;
|
|
emptyFilterMessage?: string;
|
|
$emit(eventName: 'input', value: any): this;
|
|
$emit(eventName: 'change', e: { originalEvent: Event, value: any }): this;
|
|
$emit(eventName: 'filter', e: { originalEvent: Event, value: string }): this;
|
|
$slots: {
|
|
option: VNode[];
|
|
}
|
|
} |