Skip to content

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

Notifications You must be signed in to change notification settings

yanghejing/vue3-tags-input

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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