TagsInput

Manage tags effortlessly with our tags input


Simple, yet powerful tags input component

Initialization:

import TagsInput from '@/components/Inputs/TagsInput'

export default {
  components: {
    TagsInput
  }
}

Example (single file with preview)

New York Boston London
<template>
  <tags-input v-model="tags"></tags-input>
</template>
<script>
export default {
   data(){
     return {
       tags: ['New York', 'Boston', 'London'],
     }
   }
}
</script>

Show Code

TagsInput props