@ichbinkour/vue-tags

A Vue plugin for awesome tags

Usage no npm install needed!

<script type="module">
  import ichbinkourVueTags from 'https://cdn.skypack.dev/@ichbinkour/vue-tags';
</script>

README

vue-tags

A Vue plugin for awesome tags

Installation

npm i @ichbinkour/vue-tags

Usage

Inside any of your components:

  <template>
    <vue-tags
      :options="options"
      @delete-tag="(newTags) => (options = newTags)"
      closable
    />
  </template>
  <script>
    import VueTags from "@ichbinkour/vue-tags"

    data() {
      return {
        options: ['VueJs', 'vue', 'tags']
      }
    }
  </script>