1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
| <template> <div> <vue-qr :config="config" :text="text"></vue-qr> </div> </template> <script> import vueQr from 'vueqr-new'; const config = { errorCorrectionLevel: 'H', type: 'image/png', rendererOpts: { quality: 0.3 }, margin: 0, scale: 4, width: 500, maskPattern:1, color: { dark: '#000000', light : "#ffffff" }, style: { width: '128px', border: '1px solid #ccc' } } export default { data() { return { text: 'https://example.com', config: config } }, components: { vueQr } } </script>
|