1. 安装包
cnpm i qrcodejs2 -S
2、使用
<div class="codeImg" style="1.45rem;height:1.45rem;margin:.15rem auto" id="qrCode"></div>
// 引入 import QRCode from 'qrcodejs2' methods: { let qrcode = new QRCode("qrCode", { 150, height: 150, // 高度 text: `${location.origin}${location.pathname}/#/?inviteUid=${this.curUser.userId}`, //要生成二维码的链接(或当前页面地址) colorDark : "#000", colorLight : "#fff", }); },