v-tag-input

0.0.3 • Public • Published

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

Readme

Keywords

Package Sidebar

Install

npm i v-tag-input

Weekly Downloads

100

Version

0.0.3

License

MIT

Last publish

Collaborators

  • neves