19 lines
291 B
Markdown
19 lines
291 B
Markdown
|
<cn>
|
||
|
#### 分段进度条
|
||
|
标准的进度条。
|
||
|
</cn>
|
||
|
|
||
|
<us>
|
||
|
#### Progress bar with success segment
|
||
|
A standard progress bar.
|
||
|
</us>
|
||
|
|
||
|
```html
|
||
|
<template>
|
||
|
<a-tooltip title="3 done / 3 in progress / 4 to do">
|
||
|
<a-progress :percent="60" :successPercent="30" />
|
||
|
</a-tooltip>
|
||
|
</template>
|
||
|
```
|
||
|
|