1 Guide to Migrate Autocomplete component to Combobox & MultiSelect
Sidhanth Rathod edited this page 2025-11-25 14:50:24 +05:30

Autocomplete Deprecation

The Autocomplete component is deprecated and will be removed in the next major release.

  • It has been split into two components: Combobox and MultiSelect

Combobox

<Combobox
  :options="options"
  v-model="val"
  placeholder="Select option"
/> 
 
<MultiSelect
  :options="options"
  v-model="val"
  placeholder="Select option"
/>

Check their story files for extensive examples: Combobox MultiSelect