19 lines
495 B
TypeScript
Executable File
19 lines
495 B
TypeScript
Executable File
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;
|
|
ariaLabelledBy?: string;
|
|
$emit(eventName: 'input', value: any): this;
|
|
$emit(eventName: 'focus', event: Event): this;
|
|
$emit(eventName: 'blur', event: Event): this;
|
|
$slots: {
|
|
option: VNode[];
|
|
}
|
|
} |