首页 / 前端 / Vue.js / VUE生成二维码
VUE生成二维码
歪脖37684 Vue.js
1814浏览
2020-10-13 15:07:21

安装依赖

npm install --save qrcodejs2sh

使用

<div class="qrcode" ref="qrCodeUrl"></div>
 
<script>
methods: {
    creatQrCode() {
        var qrcode = new QRCode(this.$refs.qrCodeUrl, {
            text: 'xxxx', // 需要转换为二维码的内容
            width: 100,
            height: 100,
            colorDark: '#000000',
            colorLight: '#ffffff',
            correctLevel: QRCode.CorrectLevel.H
        })
    },
},
mounted() {
    this.creatQrCode();
},
</script>
相关推荐