photogabble / tagify-vue

A vue.js component that wraps tagify for your convenience.

Home Page:https://yaireo.github.io/tagify/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tagify.vue

A vue.js component that wraps tagify for your convenience.

Install

npm require --save @photogabble/tagify-vue

Or

yarn add @photogabble/tagify-vue

Example Usage

<template>
  <div>
    <tagify name="taxonomy-tags" placeholder="Tags" v-model="tags"></tagify>
  </div>
</template>
<script>
  import Tagify from '@photogabble/tagify-vue/src/tagify.vue';
  export default {
    name: 'tagify-example',
    data: () => {
      return { tags: [] }
    },
    components: {
      Tagify
    },
  }
</script>

About

A vue.js component that wraps tagify for your convenience.

https://yaireo.github.io/tagify/

License:MIT License


Languages

Language:Vue 100.0%