primevue
Version:
[](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/primevue) [![Join the chat at https://gitter.im/primefaces/primevu
18 lines (17 loc) • 466 B
TypeScript
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;
$emit(eventName: 'input', value: any): this;
$emit(eventName: 'focus', event: Event): this;
$emit(eventName: 'blur', event: Event): this;
$slots: {
option: VNode[];
}
}