3.0.0 • Published 4 years ago
qrcanvas-vue v3.0.0
qrcanvas-vue
This a QRCode component for use with Vue.js, based on qrcanvas.
Usage
Note: qrcanvas-vue@2 works with vue@2, qrcanvas-vue@3 works with vue@3.
- With bundlers: - # Installation $ npm i vue qrcanvas-vue
- In browser: - <script src="https://cdn.jsdelivr.net/combine/npm/qrcanvas@3,npm/qrcanvas-vue@3"></script> <div id="root"> <qr-canvas :options="options" @updated="onUpdated"></qr-canvas> </div>
See examples for more usage.
Props
- optionsis passed to qrcanvas. For more details, see qrcanvas docs.
- Be sure to pass a new - optionsobject if data is updated:- this.options = Object.assign({}, this.options, { data: 'new data', });
Events
- beforeUpdate- Fired before the canvas is updated. The only parameter is the canvas. 
- updated- Fired after the canvas is updated. The only parameter is the canvas.