A vue.js component that wraps tagify for your convenience.
npm require --save @photogabble/tagify-vue
Or
yarn add @photogabble/tagify-vue
<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>