vue2-selectize icon indicating copy to clipboard operation
vue2-selectize copied to clipboard

A Selectize wrapper for VueJS

Results 11 vue2-selectize issues
Sort by recently updated
recently updated
newest added

Hello how I can use this plugin in NuxtJS? I tried to use in my NuxtJS app but wasn't worked due to this error `Cannot read property 'document' of undefined...

This issue exists on this repo https://github.com/selectize/selectize.js/issues/1464 If I remove the blur() function it works fine. I'll try to do a PR to fix it using the same method selectize...

like remove button in tags ? ``` $('#input-tags3').selectize({ plugins: ['remove_button'], delimiter: ',', persist: false, create: function(input) { return { value: input, text: input } } }); ```

When using create in settings, like: ``` create: function(input,callback){ .... callback(); } ``` I get this error: ![image](https://user-images.githubusercontent.com/20759342/49828208-423cd600-fd59-11e8-9fd5-1c0e4b502ae7.png)

Currently the component does not react on dynamically updated options. For example, I use localization in my app, and options depend on language strings: ```html {{ lang.user_phone_work }} {{ lang.user_phone_personal...

How to call `updatePlaceholder` (or any method) described in the selectize.js API? One example: ``` {{ option.text}} ``` `itemsSettings` is `{placeholder: 'Loading...'}`; I'm loading the options in an AJAX request...

Thanks for your wrapper around selectize. The caret is missing from the component on my local. The following is my code. ``` Static ``` Thanks.

Hi! Firstly, thanks for the superb component! I use page transitions and have noticed that component is destroyed _before_ animation begins. Thus, standard selects become visible and layout is distorted...