A tags input component for Vue 3 with custom validation, templating...
npm i vue3-tags-input
<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>
Copyright (c) 2022 Chinh Pham Duc (chinh12hy@gmail.com)