Skip to content

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

Notifications You must be signed in to change notification settings

lukas-pierce/vue3-tags-input

 
 

Repository files navigation

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

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

About

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vue 72.1%
  • JavaScript 27.9%