# Select

The Select component provides a menu of options to the user.

# Usage

Use the options prop to pass an array of options to your select. Use the placeholder prop to add a placeholder before any selectionis made. Use v-model for automatic data binding.

See the Form Field docs for more information about labeling, descriptions, placeholders, error state, success state and more.

# Custom Options

Use the value-key prop to define the key for the value of your option. Use the text-key prop to define the key for the text to show when an option is selected. These props allow you to use data from an endpoint without needing to map it to a new format.

# Clearable

Use the clearable prop to allow user to clear value when same option is clicked

# Searchable option

Using searchable property you can allow user to filter list. It also enables user to input custom values and perform server-side search (see loading and allowCustomValues props)

Pass function in searchable prop to define how the options get filtered when the select's input is used. This can be useful when you want to the filter to look through more properties than just the text. If not passed - filtering will be performed against textKey

# Loading

Pass a boolean into the loading prop to add a loading state to the component. The boolean hides and shows a Loading Spinner). This can be useful if you need to fetch options asynchronously. Select dropdown will be prevented during loading

# Persist After Selection

Pass a boolean into the persistAfterSelection prop to close select list automatically once option is selected. By default it is set to false.

# Allow Custom Values

Using the allow-custom-values prop you can allow the select component accept option that were not initially defined in the options prop. To display a custom message, like 'Add email address', set allow-custom-values to the value of your custom message. Use $$ in the allow-custom-values prop string to interpolate the input value in your custom message as shown in this demo.

Additionally to value change, @addOption event will be emited if custom value is submitted. This functionality will not work for selects with options that are a simple array.

# Fully Customized Options

Using scoped slots, you can construct a fully customized options list with whatever data and layout you desire.

First, determine the structure of your data and tell the component what your value-key and text-key are. Then, pass your template into the option slot with slot-scope="props" and construct the layout you want. You can reach inside the props.option for the data based on your desired schema.

In this demo, we construct a dropdown of users with a name, avatar and job position. We use their name as the value of the input and the text to display in the dropdown when a user is selected. With a little bit of CSS we're able to get the layout we want as well.

# Infinite Scroll

The has-more-options prop can be used to indicate that not all available options are currently visible. When the user scrolls to the bottom of the options list, the load-more event will be emitted if the has-more-options prop is true.

Can be used together with loading prop to indicate that more options are being loaded, and with persist-during-loading prop to make sure that the options list stays open.

# Auto-advance

When the auto-advance prop is set to true, on option select the cursor will auto-focus on the next input field.

This prop will not have an effect if persist-after-selection prop is set to true.

# Events

Event Args Emitted when...
@input The selected option's object An option is selected
@open - User opens the list
@close - List is closed
@search:input Search input value User types in search bar when searchable is enabled
@addOption Custom option value User submits custom value when allowCustomValues is enabled
@load-more - User scrolled to the bottom of the options list when has-more-options is true
Last Updated: 3/18/2025, 10:22:59 AM