货无忧
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
qb 86ad7ab99d 修复部分bug 6 months ago
..
components/ikun-qrcode 修复部分bug 6 months ago
changelog.md 修复部分bug 6 months ago
package.json 修复部分bug 6 months ago
readme.md 修复部分bug 6 months ago

readme.md

ikun-qrcode

使用基础的view渲染二维码,需要给定宽高和单位和数据:(color非必传,默认黑色)

<ikun-qrcode 
	width="400"
	height="400"
	unit="rpx"
	color="#000000"
	:data="绑定一个字符串变量(vue2在data中定义,vue3随意)" 
/>

界面效果

界面

为什么不用canvas渲染

如果你在首页布局中嵌入二维码,此时如果有个dialog弹出,canvas的层级会一直最高,以致于盖住dialog的内容,这显然是不符合常理的。 用view实现就不存在这个问题。 wx-canvas文档

vue2详细用法

<template>
    <view class="content">
        <ikun-qrcode
            width="400"
            height="400"
            unit="rpx"
			color="#000000"
            :data="url"
        ></ikun-qrcode>
    </view>
</template>
<script>
    export default {
        data() {
            return {
                url: 'http://baidu.com'
            }
        }
    }
</script>

vue3详细用法

<template>
    <view class="content">
        <ikun-qrcode
            width="400"
            height="400"
            unit="rpx"
			color="#000000"
            :data="url"
        />
    </view>
</template>
<script setup sfc>
import { ref } from 'vue';
const url = ref('http://baidu.com')
</script>