<div class="qrBox">
<div id="qrCode" ref="qrCodeDiv"></div>
<img class="qrLogo" src="@/assets/logo.jpg" />
<div class="qrButBox" v-if="qrButBox === true">
<button @click="newQrimg">点击重新获取二维码</button>
</div>
</div>
created () {
this.$nextTick(function () {
this.BindQRCode()
})
this.timeQR()
},
methods: {
newQrimg () {
this.BindQRCode()
this.qrButBox = false
this.timeQR()
},
timeQR () {
var _this = this
setTimeout(function () {
_this.$nextTick(function () {
_this.qrButBox = true
})
}, 3000)
},
BindQRCode () {
new QRCode(this.$refs.qrCodeDiv, {
text: 'https://www.baidu.com/',
width: 180,
height: 180,
colorDark: '#333', // 二维码颜色
colorLight: '#fff', // 二维码背景色
correctLevel: QRCode.CorrectLevel.L // 容错率,L/M/H
})
},
}
vue 生成二维码
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 1、安装插件 npm install qrcodejs2 --save 2、页面引用 import QRCode ...