0.1.6 • Published 4 years ago

@ichbinkour/vue-tags v0.1.6

Weekly downloads
1
License
-
Repository
-
Last release
4 years ago

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>