条形码
HiBarcode 是一个生成条形码的组件。支持下载条形码图片。
安装方式
bash
yarn add pangea-ui
引用方式
js
import HiBarcode from "pangea-ui/hi-barcode";
import "pangea-ui/dist/style.css";
Props
参数名 | 描述 | 类型 | 默认值 |
---|---|---|---|
value | 条形码编码内容 | string | |
height | 尺寸 (条形码高度) | string, number | 100 |
download | 是否显示下载按钮 | boolean | false |
displayValue | 条形码下方是否展示生成的内容 | boolean | true |
id | 条形码容器 id | string | 无 |
使用示例
html
<template>
<HiBarcode
content="hello"
:download="true"
:size="150"
:displayValue="true"
/>
</template>