# SFormSelect

Custom select component.

# Props

Prop name Description Type Values Default
v-model Select value string|number|object - null
options Options list array - []
optionAdapter Options adapter which transform the options list and value func - item => ({
id: item,
label: item,
item
})

# Events

Event name Type Description
change string, number, object Change event

<SFormSelect :options="[1, 2, 3]" />