react使用qrcode.react生成二維碼

CharmingDang發表於2020-12-18

安裝

npm install qrcode.react --save

使用

import QRCode  from 'qrcode.react';

 <QRCode
      id="bill_qr_code_url"
      value={url} //value引數為生成二維碼的連結 我這裡是由後端返回
      size={200} //二維碼的寬高尺寸
      fgColor="#000000"  //二維碼的顏色
  />

效果

相關文章