2018-04-03 06:14:38 +00:00
|
|
|
<cn>
|
|
|
|
#### 进度条
|
|
|
|
标准的进度条。
|
|
|
|
</cn>
|
|
|
|
|
|
|
|
<us>
|
|
|
|
#### Progress bar
|
|
|
|
A standard progress bar.
|
|
|
|
</us>
|
|
|
|
|
2019-10-09 10:32:23 +00:00
|
|
|
```tpl
|
2018-04-03 06:14:38 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<a-progress :percent="30" />
|
|
|
|
<a-progress :percent="50" status="active" />
|
|
|
|
<a-progress :percent="70" status="exception" />
|
|
|
|
<a-progress :percent="100" />
|
|
|
|
<a-progress :percent="50" :showInfo="false" />
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
```
|