Combobox

A searchable select input that filters options as you type.

Install

npx @vultra/cli add combobox

Usage

Use the Combobox component for searchable dropdowns:

<script>
  import { Combobox } from '@vultra/ui';
</script>

<Combobox options={[{ value: 'a', label: 'Option A' }]} />

Props

  • options - Array of option objects
  • value - Selected value
  • placeholder - Input placeholder
  • disabled - Disable interaction
  • class - Additional CSS classes

Features

  • Search filtering
  • Keyboard navigation
  • Clear button