Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/intracto/vue-multi-format-barcode
Multi-format 1D/2D barcode image processing component in Vue 2+, based on zxing-js library.
https://github.com/intracto/vue-multi-format-barcode
barcode-scanner qrcode-scanner vuejs2 zxing-library
Last synced: 3 months ago
JSON representation
Multi-format 1D/2D barcode image processing component in Vue 2+, based on zxing-js library.
- Host: GitHub
- URL: https://github.com/intracto/vue-multi-format-barcode
- Owner: Intracto
- License: mit
- Created: 2019-07-03T13:40:49.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-09T17:24:31.000Z (about 2 years ago)
- Last Synced: 2024-10-09T17:28:32.478Z (3 months ago)
- Topics: barcode-scanner, qrcode-scanner, vuejs2, zxing-library
- Language: JavaScript
- Homepage:
- Size: 331 KB
- Stars: 2
- Watchers: 20
- Forks: 2
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
## MFB Scanner (vue-multi-format-barcode)
> Multi-format 1D/2D barcode image processing component in Vue 2+, based on zxing-js library.### Demo
Demo: -### Install
```bash
yarn add vue-multi-format-barcode
```### How to
In main.js:
```javascript
import Vue from 'vue'
import MultiFormatBarcode from 'vue-multi-format-barcode'Vue.use(MultiFormatBarcode)
```In App.vue:
```vue
```
### Props & Events
```html
```### FAQ
--
### Development / Contribution
You'll need vue cli globally to debug the component.
```bash
npm install -g @vue/cli
npm install -g @vue/cli-service-global
```Start a development server for the component
```bash
vue serve MultiFormatBarcode.vue
```