Does Quasar have AutoComplete Component?
-
Trying to find such component as an input component that we can attach a list of choices to help user during data entry. But I can’t find such component.
Secondly, in the select component,can we offer a search option like the following image?
-
@Ben-Hayat some ways, take a look into QSelect filtering using use-input https://quasar.dev/vue-components/select#Filtering-and-autocomplete and use slots to customize the options https://quasar.dev/vue-components/select#Customizing-menu-options, you can also use a QInput with a child QMenu. Quite trivial to implement with the array of quasar components already available IMHO.
-
@metalsadman
Thanks!