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)

27 lines (25 loc) 846 B
import Vue, { VNode } from 'vue'; declare class AutoComplete extends Vue { modelValue?: any; suggestions?: any[]; field?: string|Function; scrollHeight?: string; dropdown?: boolean; dropdownMode?: string; multiple?: boolean; minLength?: number; delay?: number; appendTo?: string; inputStyle?: any; inputClass?: string; forceSelection?: boolean; $emit(eventName: 'item-select', e: {originalEvent: Event, value: any}): this; $emit(eventName: 'item-unselect', e: {originalEvent: Event, value: any}): this; $emit(eventName: 'dropdown-click', e: {originalEvent: Event, query: string}): this; $emit(eventName: 'complete', e: {originalEvent: Event, query: string}): this; $emit(eventName: 'clear'): this; $slots: { list: VNode[]; }; } export default AutoComplete;