1.0.5 • Published 3 years ago
vue3-input-tags v1.0.5
vue3-input-tags
A tags input component for Vue 3 with custom validation, templating...
Install
npm i vue3-input-tags
Usage
<template>
<vue3-input-tags :tags="tags"
placeholder="input tags" />
</template>
<script>
import { defineComponent } from 'vue';
import Vue3InputTags from 'vue3-input-tags';
export default defineComponent({
components: {
Vue3InputTags
},
data() {
return {
tags: ['VUE', 'HTML', 'CSS']
}
},
})
</script>
License
Copyright (c) 2022 Chinh Pham Duc (chinh12hy@gmail.com)