vue3-tags-input

A tags input component for Vue 3 with custom validation, templating…

Demo & Docs

Install

npm i vue3-tags-input

Usage

<template>
    <vue3-tags-input :tags="tags"
                     placeholder="input tags" />
</template>

<script>
    import { defineComponent } from 'vue';
    import Vue3TagsInput from 'vue3-tags-input';

    export default defineComponent({
    components: {
        Vue3TagsInput
    },

    data() {
        return {
            tags: ['VUE', 'HTML', 'CSS']
        }
    },
})
</script>

License

MIT

GitHub

View Github