vue2-selectize
vue2-selectize copied to clipboard
how i can add plugin
like remove button in tags ?
$('#input-tags3').selectize({
plugins: ['remove_button'],
delimiter: ',',
persist: false,
create: function(input) {
return {
value: input,
text: input
}
}
});
This is work for me in data() then :settings="groupSettings" when you create the selectize
groupSettings: {
create: false,
plugins: ['remove_button']
},