1.0.5 • Published 2 years ago

vue3-input-tags v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

vue3-input-tags

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

Demo & docs

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

MIT

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

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago