Skip to content

二维码

HiQrcode 是一个生成二维码的组件。支持下载二维码图片。

image

安装方式

bash
yarn add pangea-ui

引用方式

js
import HiQrcode from "pangea-ui/hi-qrcode";
import "pangea-ui/dist/style.css";

Props

参数名描述类型默认值
value二维码编码内容string
errorCorrectionLevel容错率L, M, Q, HH
size尺寸 (二维码宽高)string, number200
download是否显示下载按钮booleanfalse
id二维码容器 idstring

使用示例

html
<template>
  <HiQrcode
    content="hello"
    :download="true"
    :size="300"
    errorCorrectionLevel="H"
  />
</template>