Package Exports
- vue3-tags-input
- vue3-tags-input/dist/vue3-tags-input.esm.js
- vue3-tags-input/dist/vue3-tags-input.ssr.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vue3-tags-input) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
vue3-tags-input
A tags input component for Vue 3 with custom validation, templating...
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)