2018-04-03 06:14:38 +00:00
|
|
|
<cn>
|
|
|
|
#### 分段进度条
|
|
|
|
标准的进度条。
|
|
|
|
</cn>
|
|
|
|
|
|
|
|
<us>
|
|
|
|
#### Progress bar with success segment
|
|
|
|
A standard progress bar.
|
|
|
|
</us>
|
|
|
|
|
|
|
|
```html
|
|
|
|
<template>
|
2019-04-25 12:23:14 +00:00
|
|
|
<div>
|
|
|
|
<a-tooltip title="3 done / 3 in progress / 4 to do">
|
|
|
|
<a-progress :percent="60" :successPercent="30" />
|
|
|
|
</a-tooltip>
|
|
|
|
<a-tooltip title="3 done / 3 in progress / 4 to do">
|
|
|
|
<a-progress :percent="60" :successPercent="30" type="circle" />
|
|
|
|
</a-tooltip>
|
|
|
|
<a-tooltip title="3 done / 3 in progress / 4 to do">
|
|
|
|
<a-progress :percent="60" :successPercent="30" type="dashboard" />
|
|
|
|
</a-tooltip>
|
|
|
|
</div>
|
2018-04-03 06:14:38 +00:00
|
|
|
</template>
|
|
|
|
```
|