vue3-tags-input

1.0.12 • Public • Published

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

Copyright (c) 2022 Chinh Pham Duc (chinh12hy@gmail.com)

/vue3-tags-input/

    Package Sidebar

    Install

    npm i vue3-tags-input

    Weekly Downloads

    4,537

    Version

    1.0.12

    License

    MIT

    Unpacked Size

    74.2 kB

    Total Files

    7

    Last publish

    Collaborators

    • chinh12hy