Takachi67 / vue3-autocomplete

Vue3 component used to search and select an item in a custom list.
31 stars 17 forks source link

Placeholder #13

Closed ingridgrenholm closed 3 years ago

ingridgrenholm commented 3 years ago

How do I implement a placeholder? My component looks like this at the moment:

<Autocomplete
  @input="Elements"
  :results="myElements"
  :display-item="displayElement"
  :max="15"
  @onSelect="onSelected"
></Autocomplete>
panos4tw commented 3 years ago

Created a pull request for it https://github.com/Takachi67/vue3-autocomplete/pull/15

Takachi67 commented 3 years ago

Hi, I added the feature. Thanks for the support.