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)

30 lines (28 loc) 1.02 kB
import Vue, { VNode } from 'vue'; declare class AutoComplete extends Vue { value?: any; suggestions?: any[]; field?: string | ((item: any) => any); scrollHeight?: string; dropdown?: boolean; dropdownMode?: string; multiple?: boolean; minLength?: number; delay?: number; ariaLabelledBy?: string; appendTo?: string; forceSelection?: boolean; autoHighlight?: boolean; $emit(eventName: 'input', value: any): this; $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; $emit(eventName: 'focus', event: Event): this; $emit(eventName: 'blur', event: Event): this; $slots: { list: VNode[]; }; } export default AutoComplete;