vue-bootstrap-typeahead
vue-bootstrap-typeahead copied to clipboard
An autocomplete/typeahead component for Vue 2 and Bootstrap 4
Might be stupid, but I really can't figure out how to set the initial selected value. Can I get some help?
when write any word in input appear me this issue on console `ReferenceError: Can't find variable: regeneratorRuntime`
disable auto suggestion from browsers
I was missing the feature to disable the input-field itself. Most vue bootstrap components that are using input-fields contain a :disabled property.
Update template example to use Vue 2.60+ syntax. See https://vuejs.org/v2/guide/components-slots.html#Scoped-Slots (cherry picked from commit a9cfc7ec4a0a7afa866bee14304890b8b26c58d1)
Added a message for better user experience on empty results.
Value of attribute `q` not load if alter in created() or mounted(), as in my example: HTML: ``` ``` JAVASCRIPT: ``` data() { return { q: "", list: [] }...
Hello all. I tried to clear the text inside the typeahead control after selecting from the list and making some action like inserting in another tabular bootstrap , but this...
I was using vue-strap with typeahead. We have the following code: ``` ... getTypeaheadURL: function(param) { return '/' + this.collection + '/params/' + param + '?' + param + '=';...