0.0.3 • Published 7 years ago

v-tag-input v0.0.3

Weekly downloads
28
License
MIT
Repository
-
Last release
7 years ago

npm

Vue Tag Input

Tiny tag input for Vue.js

Demo

Usage

Just bind an array of tags to v-model property.

There's a separator property default to use space, but you can change it to comma.

<template>
<div>
  <v-tag-input v-model="tags"></v-tag-input> {{tags}}
</div>
</template>

<script>
import VTagInput from 'v-tag-input'

export default {
  components: {VTagInput},
  data () {
    return {
      tags: ['foo', 'bar']
    }
  }
}
</script>

Installation

Using yarn

yarn add v-tag-input

Using npm

npm i --save v-tag-input

Other Tag Input

Contribution

You're free to contribute to this project by submitting issues and/or pull requests. This project is test-driven, so keep in mind that every change and new feature should be covered by tests. Your name will be added to the hall of fame ;)

License

This project is licensed under MIT License