Skip to content

Select

Select an item in a list. Use with Field to access all functionalities.

Examples

Base

The select input uses HTML's native select input. Select inputs can be single value selections, or multi-value selections by using the multiple attribute.

Show code

Options

There are 4 ways to provide options to a select input:

  • An array of primitives
  • An object of value/label pairs
  • An array of objects with label and value properties (the same as the checkbox and radio inputs)
  • Using the native <option> tags directly inside the default slot.

Array of primitives

The simplest way to provide options is an array of primitives like strings or numbers, where the primitive will be used for both thestring casted label representation and the value of the option.

Show code

Value / Label object

You may also provide the options prop where the keys are values and the values of each property are labels.

Show code

Array of objects

The most flexible way to define options is to provide an array of objects. The object is defined as:
{ value: any, label: string, attrs?: object }
The value attribute is the real value which will be used by the v-model property and other events. The label attribute is the visible representation of the option. The attrs attribute is an object for additional attributes, which will be applied to the option item tag.

Show code

Option groups

Using the array of objects syntax you can also create grouped options (<optgroup> in HTML) by adding an options property to the object option.

Show code

Default Slot

Sometimes it may be desirable to manually output the contents of a select list in order to create specialized structures. This can be done by using the default slot to explicitly output your options like the native HTML select element.

Show code

Multiple

The select input also supports a multiple attribute that allows for multi-selection. When used the v-model attribute will be an array of values.

Accessibility Notes

Select inputs with the multiple attribute can be challenging for some users because they require holding-down the control or command keys to perform multiple selections. Depending on your audience, you may want to consider using a checkbox input instead.

Show code

Sizes

Show code

Variants

Show code

With Icons

Show code

Class props

'Classes applied to the element'

Select component

Select an item in a list. Use with Field to access all functionalities.

html
<o-select></o-select>

Props

Prop nameDescriptionTypeValuesDefault
autocompleteSame as native autocomplete options to use in HTML5 validationstring-
From config:
select: {
  autocomplete: "off"
}
customValidityCustom HTML 5 validation error to set on the form controlstring | ((currentValue: unknown, state: ValidityState) => string)-
disabledDisable the input - same as native disabledboolean-false
expandedMakes input full width when inside a grouped or addon fieldboolean-false
iconIcon to be shownstring-
From config:
select: {
  icon: undefined
}
iconClickableMakes the icon clickableboolean-false
iconPackIcon pack to usestringmdi, fa, fas and any other custom icon pack
From config:
select: {
  iconPack: undefined
}
iconRightIcon to be added on the right sidestring-
From config:
select: {
  iconRight: undefined
}
iconRightClickableMake the icon right clickableboolean-false
iconRightVariantVariant of right iconstring-
idSame as native id. Also set the for label for o-field wrapper - default is an uuid.string-useId()
v-modelThe input value stateunknown-
multipleAllow multiple selection - converts the modelValue into an arrayboolean-
nativeSizeSame as native sizenumber | string-
optionsSelect options, unnecessary when default slot is usedOptionsPropWithGroups<unknown>-
overrideOverride existing theme classes completelyboolean-
placeholderText when nothing is selectedstring-
requiredSame as native requiredboolean-false
roundedMakes the element roundedboolean-false
sizeVertical size of inputstringsmall, medium, large
From config:
select: {
  size: undefined
}
statusIconShow status icon using field and variant propboolean-
From config:
{
  statusIcon: true
}
useHtml5ValidationEnable HTML 5 native validationboolean-
From config:
{
  useHtml5Validation: true
}
variantColor of the controlstringprimary, info, success, warning, danger, and any other custom color
From config:
select: {
  variant: undefined
}

Events

Event namePropertiesDescription
update:model-valuevalue T | T[] - updated modelValue propmodelValue prop two-way binding
focusevent Event - native eventon input focus event
blurevent Event - native eventon input blur event
invalidevent Event - native eventon input invalid event
icon-clickevent Event - native eventon icon click event
icon-right-clickevent Event - native eventon icon right click event

Slots

NameDescriptionBindings
placeholderOverride the placeholder
defaultOverride the options, default is options prop

Sass variables

Current theme ➜ Oruga

SASS VariableDefault
$select-background-color#fff
$select-border-colorvar(--#{$prefix}grey-lighter)
$select-border-stylesolid
$select-border-width1px
$select-border-radiusvar(--#{$prefix}base-border-radius)
$select-rounded-border-radiusvar( --#{$prefix}base-border-radius-rounded)
$select-box-shadow$control-box-shadow
$select-color#363636
$select-icon-zindex4
$select-height$control-height
$select-line-heightvar(--#{$prefix}base-line-height)
$select-margin0
$select-padding$control-padding-vertical $control-padding-horizontal
$select-arrow-color$select-color
$select-arrow-size1rem
$select-placeholder-opacityvar(--#{$prefix}base-disabled-opacity)

See ➜ 📄 Full scss file

Current theme ➜ Bulma

The theme does not have any custom variables for this component.

Current theme ➜ Bootstrap

The theme does not have any custom variables for this component.

Released under the MIT License.