二维码
HiQrcode 是一个生成二维码的组件。支持下载二维码图片。
安装方式
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, H | H |
size | 尺寸 (二维码宽高) | string, number | 200 |
download | 是否显示下载按钮 | boolean | false |
id | 二维码容器 id | string | 无 |
使用示例
html
<template>
<HiQrcode
content="hello"
:download="true"
:size="300"
errorCorrectionLevel="H"
/>
</template>