You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
384 B
26 lines
384 B
3 years ago
|
<docs>
|
||
|
---
|
||
|
order: 0
|
||
|
title:
|
||
|
zh-CN: 进度条
|
||
|
en-US: Progress bar
|
||
|
---
|
||
|
|
||
|
## zh-CN
|
||
|
|
||
|
标准的进度条。
|
||
|
|
||
|
## en-US
|
||
|
|
||
|
A standard progress bar.
|
||
|
|
||
|
</docs>
|
||
|
|
||
|
<template>
|
||
|
<a-progress :percent="30" />
|
||
|
<a-progress :percent="50" status="active" />
|
||
|
<a-progress :percent="70" status="exception" />
|
||
|
<a-progress :percent="100" />
|
||
|
<a-progress :percent="50" :show-info="false" />
|
||
|
</template>
|