[Vuejs]-How can I use selectize in an input form in Vue

3👍

Try this.

Vue.directive('selectize', function(el, binding){
  var options = binding.value || {}
  $(el).selectize(options)
})

Then use v-selectize directive where you want.

You can also add more options. For example:

<input v-selectize="{maxItems: 3}" type="text" placeholder="Select Teams" />
👤Ikbel

Leave a comment