All Projects → fengyuanchen → Vue Qrcode

fengyuanchen / Vue Qrcode

Licence: mit
QR code component for Vue.js

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Vue Qrcode

Vue Qrcode Reader
A set of Vue.js components for detecting and decoding QR codes.
Stars: ✭ 1,240 (+71.27%)
Mutual labels:  qr-code, qrcode, vue-component
python
Build Python extension with Dynamsoft Barcode Reader.
Stars: ✭ 35 (-95.17%)
Mutual labels:  qrcode, qr-code
nova-qrcode-field
A Laravel Nova field to generate QR Code
Stars: ✭ 28 (-96.13%)
Mutual labels:  qrcode, qr-code
qrcode
A flutter plugin for scanning QR codes. Use AVCaptureSession in iOS and zxing in Android.
Stars: ✭ 69 (-90.47%)
Mutual labels:  qrcode, qr-code
Php Qrcode
A QR Code generator for PHP7.4+
Stars: ✭ 685 (-5.39%)
Mutual labels:  qr-code, qrcode
paper-store
Cold store small files on paper as QR codes -- PGP keys, Bitcoin keys, Tox keys or any other small files in general.
Stars: ✭ 28 (-96.13%)
Mutual labels:  qrcode, qr-code
QrCodeGenerator
QR Code Generator for .NET
Stars: ✭ 66 (-90.88%)
Mutual labels:  qrcode, qr-code
QR-secret-sharing
🔒 Create QR codes to secret-share a message. Ideal for cryptocurrency wallet recovery keys and passwords.
Stars: ✭ 94 (-87.02%)
Mutual labels:  qrcode, qr-code
covidpass
Scan your vaccination, test and recovery certificates in QR code representation and save them to your Apple Wallet
Stars: ✭ 137 (-81.08%)
Mutual labels:  qrcode, qr-code
ZATCA
An unofficial package maintained by Salla to help developers to implement ZATCA (Fatoora) QR code easily which required for e-invoicing
Stars: ✭ 77 (-89.36%)
Mutual labels:  qrcode, qr-code
Qrcode
QR code generation library in C, optimized for low-power devices, such as Arduino.
Stars: ✭ 351 (-51.52%)
Mutual labels:  qr-code, qrcode
WeChatQRCode
⛄ 基于OpenCV开源的微信二维码引擎移植的Android扫码识别库
Stars: ✭ 250 (-65.47%)
Mutual labels:  qrcode, qr-code
QRCodeFX
Simple tool to generate/read QR Code and export it.
Stars: ✭ 31 (-95.72%)
Mutual labels:  qrcode, qr-code
vk-qr
VK QR Code generator library
Stars: ✭ 43 (-94.06%)
Mutual labels:  qrcode, qr-code
QRCode-Generator-PHP-Class
🚀 QRCode PHP class (library). QR Code Generator using vCard 4.0 and the Google Chart API
Stars: ✭ 91 (-87.43%)
Mutual labels:  qrcode, qr-code
quagga2-reader-qr
Quagga2 sample external reader for QR codes
Stars: ✭ 20 (-97.24%)
Mutual labels:  qrcode, qr-code
React Native Vision Camera
📸 The Camera library that sees the vision.
Stars: ✭ 443 (-38.81%)
Mutual labels:  qr-code, qrcode
qr-pirate
crawl QR-codes from search engines and look for bitcoin private keys
Stars: ✭ 58 (-91.99%)
Mutual labels:  qrcode, qr-code
kanban-board-app
Kanban style task management board app
Stars: ✭ 118 (-83.7%)
Mutual labels:  qrcode, qr-code
QR Attendance
This project is an attendance system which provides attendance on scanning QR code. The attendance is stored in Excel sheet named with the date of attendance taken. In this folder a file named Generate.py is used to generate the QR code for given input file. Attend.py file is for scanning the QR code
Stars: ✭ 17 (-97.65%)
Mutual labels:  qrcode, qr-code

vue-qrcode

Build Status Coverage Status Downloads Version Gzip Size

QR code component for Vue 3, bases on node-qrcode.

Main files

dist/
├── vue-qrcode.js         (UMD, default)
├── vue-qrcode.min.js     (UMD, compressed)
├── vue-qrcode.esm.js     (ECMAScript Module)
└── vue-qrcode.esm.min.js (ECMAScript Module, compressed)

Getting started

Installation

npm install vue qrcode @chenfengyuan/vue-qrcode

In browser:

<script src="/path/to/vue.js"></script><!-- Vue.js is required -->
<script src="/path/to/qrcode.js"></script><!-- qrocde is required -->
<script src="/path/to/vue-qrcode.js"></script>

Usage

import Vue from 'vue';
import VueQrcode from '@chenfengyuan/vue-qrcode';

const app = Vue.createApp({});

app.component(VueQrcode.name, VueQrcode);
<vue-qrcode value="Hello, World!" :options="{ width: 200 }"></vue-qrcode>

Browser support

Same as Vue 3.

Versioning

Maintained under the Semantic Versioning guidelines.

License

MIT © Chen Fengyuan

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].