plugin-tigre-vue-reader-barcode
v1.1.8
Published
Plugin em vue para leitura de códigos de barra
Readme
Installation
The easiest way to use Vue Barcode Reader is to install it from npm or yarn.
npm install plugin-tigre-vue-reader-barcode --saveimport { ReaderBarcode } from "plugin-tigre-vue-reader-barcode";In your template you can use this syntax:
<ReaderBarcode
@decode="onDecode"
@loaded="onLoaded"
></ReaderBarcode>methods: {
onDecode (result) {
console.log(result)
}
}Thanks to:
- https://github.com/olefirenko/vue-barcode-reader
