vue-typeahead icon indicating copy to clipboard operation
vue-typeahead copied to clipboard

:mag: Typeahead component for Vue.js

Results 25 vue-typeahead issues
Sort by recently updated
recently updated
newest added

I have added the cancel method in my Vue file but the logic to cancel the request is not clear. I have read all the code of yours but unable...

Hello, first, thanks a lot for taking the time to develop this awesome stuff! I'm trying to make the width of the list always match width of the input textbox....

Hi I'm getting the error: Uncaught ReferenceError: _vue is not defined when using the component... This is where it fails: fetch: function() { var e = this; if (!this.$http) {...

Methods and properties on `Vue.util` have [been removed](https://github.com/vuejs/vue/releases?after=v2.2.1) in newer versions of Vue, so `util.warn` throws a TypeError. Errors are now more descriptive ❗️

Is it possible to bind the v-model to something other than query? It would be nice to have the typeahead work with an existing form where the type ahead was...

Prevent multiple queries. Wait for a second and check if the user is still writing.

Your example is solid but the `@blur` method means users can't grab the scroll bar on the `` if the results are longer.

When you search for the first time, the first item cannot be selected because the list has not been rendered yet. if (this.selectFirst) { this.down(); Any idea how this can...

I know this may possibly be a laravel mix issue, however all of my other vue components are working, so will post here first. Compiling with `npm run dev` or...

I'm currently using this component in a pseudo-form that allows the user to submit the form if the input field receives an enter (not the autocomplete popup). I'm doing this...