vue中使用qrcodejs2生成二维码

1、安装包
npm i qrcodejs2 -S

2、引入
import QRCode from 'qrcodejs2'

//使用
 
new QRCode(this.$refs.qrcode, { width: 120, // 二维码宽度,单位像素 height: 120, // 二维码高度,单位像素 text: "链接"// 生成二维码的链接 })

你可能感兴趣的:(vue中使用qrcodejs2生成二维码)