Skip to content

BaseSelect

Props

NameDescriptionTypeDefault
placeholderPlaceholder for selectstring (optional)
optionsArray of options for selectOption
disabledIs select disabledboolean (optional)

Slots

NameDescriptionBindings
labelLabel for optionindex number - current index

Examples

vue
<BaseSelect :options=[{label: "English",value: "en"}]>
  <template #label>
    Custom Label
  </template>
</BaseSelect>
<BaseSelect :options=[{label: "English",value: "en"}]>
  <template #label>
    Custom Label
  </template>
</BaseSelect>

Released under the GNU GPLv3 License.