A simple tags input with typeahead (autocomplete) built with Vue.js 2.
Voerro Vue Tags Input v2 is a simple tags input component built with Vue.js 2. It provides functionalities like typeahead for easy tag input. The component can be installed via NPM or CDN, and it allows for customization of the appearance through styling.
npm install @voerro/vue-tagsinput@2
Then register the component with Vue:
import Vue from 'vue';
import { VueTagsInput } from '@voerro/vue-tagsinput';
Vue.component('tags-input', VueTagsInput);
Include the dist/style.css file on your page to apply the styling.
If you prefer not to use NPM, include the following from a CDN:
<link rel="stylesheet" href="path/to/dist/style.css">
<script src="https://cdn.jsdelivr.net/npm/vue"></script>
<script src="https://cdn.jsdelivr.net/npm/@voerro/vue-tagsinput"></script>
Voerro Vue Tags Input v2 is a handy component for adding tag input functionality to Vue.js 2 projects. It offers simple installation options, customization for styling, and flexibility in managing selected tag data. With features like typeahead and programmatically setting tags, it provides a convenient solution for tag inputs in Vue.js applications.