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) [![Join the chat at https://gitter.im/primefaces/primevu

23 lines (22 loc) 600 B
import Vue, { VNode } from 'vue'; export declare class Dropdown extends Vue { value?: any; options?: any[]; optionLabel?: string; optionValue?: any; optionDisabled?: boolean; scrollHeight?: string; filter?: boolean; filterPlaceholder?: string; editable?: boolean; placeholder?: string; disabled?: boolean; dataKey?: string; showClear?: boolean; tabindex?: string; $emit(eventName: 'input', value: string): this; $emit(eventName: 'change', e: { originalEvent: Event, value: string }): this; $slot: { option: VNode[]; } }