socieboy's avatar

Autocomplete field with Vue.js

How can I implement autocomplete field with vue.js

I want to have my field and when I type some name of my users table autocomplete with those names that have some relation.

0 likes
8 replies
bimalshah72's avatar

@socieboy

Best oprions would be register twitter typeahead in your vue ready function

 ready: function () {
    // register on the same element where you added v-model for field - with twitter typeahead
  }
2 likes

Please or to participate in this conversation.