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.
Vue.js is a lightweight and flexible JavaScript framework that allows developers to easily build dynamic and reactive user interfaces. Its intuitive syntax, modular architecture, and focus on performance make it a popular choice for modern web development.
Webpack is a popular open-source module bundler for JavaScript applications that bundles and optimizes the code and its dependencies for production-ready deployment. It can also be used to transform other types of assets such as CSS, images, and fonts.