前端生成二维码

发布时间 2024-01-05 10:36:57作者: 醒日是归时
import QRCode from 'qrcode';


  QRCode.toDataURL(res.data.qrcodeUrl, {
    margin: 2,
    type: 'image/jpeg',
    quality: 0.3
  }, (error, url) => {
    if (error) console.error(error);
    this.qrcodeSrc = url;
    this.timer = setInterval(this.getStatus, 2000);
  });