-
Notifications
You must be signed in to change notification settings - Fork 124
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
typeahead-callback doesn't show autocomplete prompts #149
Comments
I have the same problem. |
I had the same problem. In VoerrorTagsInput.vue,
has to be changed to this:
Then it works for me. And seems there is already a PR open for this: https://github.com/voerro/vue-tagsinput/pull/147/commits |
As another workaround until the PR is merged, you can add a autocomplete(q) {
const p = this.searchRemoteServer({ query: q })
return new Promise((resolve) => {
p.then((results) => {
resolve(results)
this.$refs.tagsinput.doSearch(q)
})
})
}, |
As described in this issue in the original repository: voerro#149 (comment) Would be nice to be able to use your repository for now.
I use
"@voerro/vue-tagsinput": "^2.7.1"
in my"vue": "^2.6.11"
proj to find thattypeahead-callback
doesn't show autocomplete prompts.Some code snippets are as follows:
I notice that
console.log(result);
prints correct results but no autocomplete prompts are shown.Any help is appreciated :)
Creling
The text was updated successfully, but these errors were encountered: