@bj-nsc/progressbar
v1.0.7
Published
水平进度条
Downloads
21
Readme
简单的水平进度条
## 安装和使用
npm 安装
npm i @bj-nsc/progressbar
yarn 安装
yarn add @bj-nsc/progressbar
在代码里使用
const totalProgressOptions = {
width: 18.75,
height: 1.5,
unit: "vw",
};
<ProgressBar value={100} label={"总进度"} options={totalProgressOptions} />;
Props
属性详细说明
value
进度值label
标签名称showLabel
是否显示标签width
进度条宽度height
进度条高度unit
值单位 px|vwradius
圆角值bgColor
进度条背景barColor
进度条颜色labelOptions
标签配置 (对象类型)valueOptions
进度数值配置 (对象类型)