BlogPlaygroundOne

Autocompletes

The v-autocomplete component offers simple and flexible type-ahead functionality. This is useful when searching large sets of data or even dynamically requesting information from an API.

Usage

The autocomplete component extends v-select and adds the ability to filter items.

<v-autocomplete label="Autocomplete" :items="['California', 'Colorado', 'Florida', 'Georgia', 'Texas', 'Wyoming']" ></v-autocomplete>

API

ComponentDescription
v-autocompletePrimary Component
v-comboboxA select component that allows for filtering and custom values
v-selectA replacement for the HTML
Toggle Inline API

Caveats

Examples

Below is a collection of simple to complex examples.

Props

Density

You can use density prop to adjust vertical spacing within the component.

Filter

The custom-filter prop can be used to filter each individual item with custom logic. In this example we filter items by name.

User Profile

Filter keys

When user is typing in the field to narrow the list of options, the input text is matched against the title. With filter-keys you can specify which properties should be used instead. Properties of original objects passed to items need to be accessed via the raw.* path, as filter-keys index the root level of InternalItem.

Subheaders and dividers

The items prop recognizes special type of divider and subheader. Those items will be excluded when using filter and can be further customized with dedicated slots.

Slots

Item and selection

With the power of slots, you can customize the visual output of the select. In this example we add a profile picture for both the chips and list items.

Midnight Crew

The summer breeze

When customizing v-autocomplete items with the #item slot, make sure to forward the slot props using v-bind=“props”. This is required for virtual scrolling to work properly — without it, only part of your items may be displayed.

Misc

Asynchronous items

Sometimes you need to load data externally based upon a search query. Simply bind to the search prop with the v-model and watch for the changes to the reactive variable. Make sure to apply debounce and avoid race conditions.

State selection

State selector

Using a combination of v-autocomplete slots and transitions, you can create a stylish toggleable autocomplete field such as this state selector.

Profile
Where do you live?

New tab

The auto-select-first property highlights the first result when searching, allowing you to press tab or enter to quickly select it.

Ready for more?

Continue your learning with related content selected by the Team or move between pages by using the navigation links below.