In-depth understanding of Vue's method of generating QR codes using vue-qr

In-depth understanding of Vue's method of generating QR codes using vue-qr

The English name of “QR Code” is “QR Code”. “QR” is the abbreviation of “Quick Response”, which reflects that this QR code has the characteristic of “ultra-high-speed reading”. “Quick Response Code” means “Quick response code”.

npm download

npm install vue-qr --save

Download Success:

insert image description here

step

(1) Import

import VueQr from 'vue-qr'

(2) vue-qr parameters

  • text QR code, that is, the page you jump to after scanning the QR code
  • size QR code size
  • margin The margin of the QR code image, default 20px
  • bgSrc embedded background image address
  • logoSrc is embedded into the LOGO address in the center of the QR code
  • logoScale size of the middle image
  • dotScale The size of the dots in the QR code
  • colorDark The color of the solid point (Note: only valid when set together with colorLight)
  • colorLight blank color (Note: only works when set with colorDark)
  • If autoColor is true, the main color of the background image will be used as the color of the solid point, that is, colorDark. The default is true

Example

<template>
   <div>
      <vue-qr
         :text="imgUrl"
         :size="250"
         :logoSrc="logo"
         :logoScale="0.2">
      </vue-qr>
   </div>
</template>
<script>
import VueQr from 'vue-qr'
export default {
   name:'', 
   components:{
      VueQr,
   },
   data() {
      return {
         imgUrl: 'https://baidu.com',
         logo: require('@/assets/tea_128.png'),
      }
   },
   methods:{
   },
}
</script>

result:

insert image description here

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • How to dynamically generate QR codes in Vue
  • Use vue-qriously plugin to generate QR code in vue
  • Vue WeChat scans QR code but Apple can only save pictures (solution)
  • An example of a simple implementation method for generating a QR code using vue

<<:  Sample code for making a drop-down menu using pure CSS

>>:  The impact of limit on query performance in MySQL

Recommend

Personal opinion: Talk about design

<br />Choose the most practical one to talk ...

mysql5.7.22 download process diagram

1. Go to the official website www.mysql.com and s...

Solution to MySQL IFNULL judgment problem

Problem: The null type data returned by mybatis d...

Detailed explanation of Linux text processing tools

1. Count the number of users whose default shell ...

How to specify parameter variables externally in docker

This article mainly introduces how to specify par...

React realizes secondary linkage effect (staircase effect)

This article shares the specific code of React to...

HTML+VUE paging to achieve cool IoT large screen function

Effect demo.html <html> <head> <me...

Vue ElementUI Form form validation

Form validation is one of the most commonly used ...

Dynamic SQL statement analysis in Mybatis

This article mainly introduces the dynamic SQL st...

Detailed explanation of JavaScript function introduction

Table of contents Function Introduction function ...

Detailed explanation of the misunderstanding between MySQL and Oracle

Table of contents Essential Difference Database s...

JavaScript Canvas implements Tic-Tac-Toe game

This article shares the specific code of JavaScri...

canvas.toDataURL image/png error handling method recommendation

Problem background: There is a requirement to tak...