Barcode Generator
-
Hi,
I was looking for a barcode generator (for displaying barcodes) plugin for quasar, but could not find one.
I tried to use this https://github.com/lindell/vue-barcode
which is Vue plugin. To get that working I followed this https://techformist.com/using-vue-plugins-quasar/
But somehow I could not succeed.
I am getting an error in the plugin configuration in the quasar.config.js
If anyone know how to get this working, highly appreciated
Thanks -
clone this to your components https://github.com/diadal/qrmaker
import VueQr from 'components/qrmaker/vue-qr.vue' components: { VueQr }, <vue-qr :text="raddress" :logoSrc="`img/logo.svg`" :colorDark="color" :logoBackgroundColor="color" :autoColor="true" :logoMargin="5" :logoScale="0.23" ></vue-qr>
-
Hi @diadal, thanks for your response , the iink is broken https://github.com/diadal/qrmaker
Besides, is’nt this support only Qr code? I am after the regular barcode. -
I use Google to generate my QR Codes. Check out the chart apis https://developers.google.com/chart/infographics/docs/qr_codes
-
At the end I decided to go with online api to generate. If anyone found a way to integrate in the quasar, appreciate your feed back.