UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

26 lines (22 loc) 583 B
import { VNode } from 'vue'; interface SelectButtonProps { modelValue?: any; options?: any[]; optionLabel?: string; optionValue?: any; optionDisabled?: boolean; multiple?: boolean; disabled?: boolean; dataKey?: string; ariaLabelledBy?: string; } declare class SelectButton { $props: SelectButtonProps; $emit(eventName: 'update:modelValue', value: any): this; $emit(eventName: 'focus', event: Event): this; $emit(eventName: 'blur', event: Event): this; $slots: { option: VNode[]; } } export default SelectButton;