Skip to content

二维码 QRCode

二维码

何时使用

  • 当需要将链接转换成为二维码时使用

基本使用

QRCode
Show Code
vue
<template>
  <QRCode value="https://blog.csdn.net/Dandrose"/>
</template>

无边框

QRCode
Show Code
vue
<template>
  <QRCode value="https://blog.csdn.net/Dandrose" :bordered="false" />
</template>

纠错等级

纠错等级也叫纠错率,就是指二维码可以被遮挡后还能正常扫描,而这个能被遮挡的最大面积就是纠错率。

通常情况下二维码分为 4 个纠错级别:

  • L级 可纠正约 7% 错误
  • M级 可纠正约 15% 错误
  • Q级 可纠正约 25% 错误
  • H级 可纠正约 30% 错误。

并不是所有位置都可以缺损,像最明显的三个角上的方框,直接影响初始定位。中间零散的部分是内容编码,可以容忍缺损。当二维码的内容编码携带信息比较少的时候,也就是链接比较短的时候,设置不同的纠错等级,生成的图片不会发生变化。


QRCode
Show Code
vue
<template>
  <QRCode value="https://blog.csdn.net/Dandrose" error-level="M" />
</template>

自定义尺寸

small
large
QRCode
Show Code
vue
<script lang="ts" setup>
import { ref } from 'vue'
import { MinusOutlined, PlusOutlined } from '@ant-design/icons-vue'
const size = ref(160)
const decline = () => {
  size.value = size.value - 10
  if (size.value < 48) {
    size.value = 48
  }
}
const increase = () => {
  size.value = size.value + 10
  if (size.value > 300) {
    size.value = 300
  }
}
</script>
<template>
  <Space vertical>
    <Space>
      <Button @click="decline" :icon="() => h(MinusOutlined)">
        small
      </Button>
      <Button @click="increase" :icon="() => h(PlusOutlined)">
        large
      </Button>
    </Space>
    <QRCode :size="size" value="https://blog.csdn.net/Dandrose" />
  </Space>
</template>

自定义样式

自定义二维码颜色和背景色


QRCode
QRCode
Show Code
vue
<template>
  <Space>
    <QRCode
      value="https://blog.csdn.net/Dandrose"
      color="#52c41a"
    />
    <QRCode
      value="https://blog.csdn.net/Dandrose"
      color="#1677FF"
      bg-color="#f5f5f5"
    />
  </Space>
</template>

自定义生成二维码

QRCode
Show Code
vue
<script setup lang="ts">
import { ref } from 'vue'
const value = ref('hello world')
</script>
<template>
  <Space align="center" gap="large">
    <QRCode :value="value" />
    <Textarea v-model:value="value" :width="200" allowClear />
  </Space>
</template>

APIs

QRCode

参数说明类型默认值
value扫描后的文本或地址stringundefined
size二维码大小,单位 pxnumber160
color二维码颜色,Value must be in hex format (十六进制颜色值)string'#000'
bgColor二维码背景色,Value must be in hex format (十六进制颜色值)string'#FFF'
bordered是否有边框booleantrue
borderColor边框颜色string'#0505050f'
scale每个 black dots 多少像素number8
errorLevel二维码纠错等级'L' | 'M' | 'Q' | 'H''H'

Released under the MIT License.