Skip to content

photogabble/tagify-vue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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>