1、安装包
npm i qrcodejs2 -S
2、引入
import QRCode from 'qrcodejs2'
//使用
<div id="qrcode" ref="qrcode" />
new QRCode(this.$refs.qrcode, {
width: 120, // 二维码宽度,单位像素
height: 120, // 二维码高度,单位像素
text: "链接"// 生成二维码的链接
})
1、安装包
npm i qrcodejs2 -S
2、引入
import QRCode from 'qrcodejs2'
//使用
<div id="qrcode" ref="qrcode" />
new QRCode(this.$refs.qrcode, {
width: 120, // 二维码宽度,单位像素
height: 120, // 二维码高度,单位像素
text: "链接"// 生成二维码的链接
})
本文标题:vue中使用qrcodejs2生成二维码
本文链接:https://www.haomeiwen.com/subject/tikabrtx.html
网友评论