Components / Select

Native Select

A styled wrapper over the system biological select button, preserving native mobile UI wheels.

Basic Use

Provide an array of objects ({ label, value }) to populate.

Multiple Selections

State manages an array. UI gracefully aggregates selected count if too long.

Typeahead Search

Try typing 'Vue' or 'React'. Navigate with arrow keys.

MayaSelect Props API

Prop / EventTypeDefaultDescription
modelValueString | Number""The selected value. Used with v-model.
optionsArray[]List of options. Can be primitive array or objects { label, value, disabled }.
placeholderString"Select an option"Placeholder when nothing is selected.
disabledBooleanfalseWhether the select is disabled.
@update:modelValueEventEmitted on selection.
@changeEventEmitted with the selected value on change.