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

how i can add plugin

Open vahidalvandi opened this issue 6 years ago • 1 comments

like remove button in tags ?

$('#input-tags3').selectize({
    plugins: ['remove_button'],
    delimiter: ',',
    persist: false,
    create: function(input) {
        return {
            value: input,
            text: input
        }
    }
});

vahidalvandi avatar Aug 08 '18 05:08 vahidalvandi

This is work for me in data() then :settings="groupSettings" when you create the selectize

groupSettings: {
  create: false,
  plugins: ['remove_button']
},

szotyi41 avatar Mar 21 '19 14:03 szotyi41