A Flexible Vue.js 2 input Tag component
Vue-Tags
A Flexible Vue.js 2 input Tag component where you can edit wathever you like related to HTML/CSS.
Installation :
npm install vue-tags
Getting Started
In your script entry point:
<div id="app">
<input-tags v-model="tags">
<div class="tags-input"
slot-scope="{tag,removeTag,inputEventHandlers,inputBindings }">
<span v-for="tag in tags"
class="tags-input-tag">
<span>{{ tag }}</span>
<button type="button" class="tags-input-remove"
v-on:click="removeTag(tag)"
>×
</button>
</span>
<input
class="tags-input-text" placeholder="Add tag..."
v-on="inputEventHandlers"
v-bind="inputBindings"
>
</div>
</input-tags>
</div>
window.Vue = require("vue");
import VueTags from "vue-tags";
//Vue.component("input-tags", VueTags); If you want a global Component
const app = new Vue({
el: "#app",
components: {
VueTags
},
data: {
tags: ['Laravel','Vuejs'],
}
});
Usage
Just add the tags as a v-model and follow the code above just don't change the vuejs attributes and the others is your choice do wathever you want with them.
Props
By Default The tag is added
when you click the Enter Key
but you can customize it by adding addKey
prop with array of KeyCodes of your choice.
You can have it here.
For Example ['188','13']
for Comma ,
and Enter Key
<div id="app">
<input-tags v-model="tags" add-key="['188','13']">
<div class="tags-input"
slot-scope="{tag,removeTag,inputEventHandlers,inputBindings }">
<span v-for="tag in tags"
class="tags-input-tag">
<span>{{ tag }}</span>
<button type="button" class="tags-input-remove"
v-on:click="removeTag(tag)"
>×
</button>
</span>
<input
class="tags-input-text" placeholder="Add tag..."
v-on="inputEventHandlers"
v-bind="inputBindings"
>
</div>
</input-tags>
</div>
const app = new Vue({
el: "#app",
components: {
VueTags
},
data: {
tags: ['Laravel','Vuejs'],
}
});
By Default The tag is deleted
when you click delete Key
but you can customize it by adding deleteKey
prop with array of KeyCodes of your choice.
You can have it here.
For Example ['13']
for Enter key
Now When we click Enter
we delete the tag
<div id="app">
<input-tags v-model="tags" delete-key="['13']">
<div class="tags-input"
slot-scope="{tag,removeTag,inputEventHandlers,inputBindings }">
<span v-for="tag in tags"
class="tags-input-tag">
<span>{{ tag }}</span>
<button type="button" class="tags-input-remove"
v-on:click="removeTag(tag)"
>×
</button>
</span>
<input
class="tags-input-text" placeholder="Add tag..."
v-on="inputEventHandlers"
v-bind="inputBindings"
>
</div>
</input-tags>
</div>
const app = new Vue({
el: "#app",
components: {
VueTags
},
data: {
tags: ['Laravel','Vuejs'],
}
});