# VueBarcode
Add barcodes to your Vue application super easily with VueBarcode! [Try it out!](http://jsfiddle.net/hfgan035/13/)
Supported barcode formats:
`CODE128`
`EAN`
`EAN-13`
`EAN-8`
`EAN-5`
`EAN-2`
`UPC (A)`
`CODE39`
`ITF-14`
`MSI`
`Pharmacode`
`Codabar`
It is a light wrapper for the [JsBarcode](https://github.com/lindell/JsBarcode) barcode library.
## Install
````
npm install vue-barcode
````
## Use
#### 1. Add VueBarcode as a component
````javascript
import VueBarcode from 'vue-barcode';
new Vue({
components: {
'barcode': VueBarcode
}
})
````
#### 2. Use it
````html