Tiny tag list view for Vue.js
https://htmlpreview.github.io/?https://github.com/vuejs-tips/v-tag-list/master/demo/index.html
Just bind an array of tags using v-model
directive or value property.
<template>
<div>
<v-tag-list v-model="tags" theme="semantic-ui"></v-tag-list> {{tags}}
</div>
</template>
<script>
import VTagList from 'v-tag-list'
export default {
components: {VTagList},
data () {
return {
tags: ['php', 'ruby', 'javascript', 'python', 'java', 'c#', 'scala', 'closure']
}
}
}
</script>
yarn add v-tag-list
npm i --save v-tag-list
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 ;)
This project is licensed under MIT License
Build inspired by vue-plugin-template