mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
32 lines
657 B
Vue
32 lines
657 B
Vue
<docs>
|
|
---
|
|
order: 8
|
|
title:
|
|
zh-CN: 分段进度条
|
|
en-US: Progress bar with success segment
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
标准的进度条。
|
|
|
|
## en-US
|
|
|
|
A standard progress bar.
|
|
|
|
</docs>
|
|
|
|
<template>
|
|
<div>
|
|
<a-tooltip title="3 done / 3 in progress / 4 to do">
|
|
<a-progress :percent="60" :success="{ percent: 30 }" />
|
|
</a-tooltip>
|
|
<a-tooltip title="3 done / 3 in progress / 4 to do">
|
|
<a-progress :percent="60" :success="{ percent: 30 }" type="circle" />
|
|
</a-tooltip>
|
|
<a-tooltip title="3 done / 3 in progress / 4 to do">
|
|
<a-progress :percent="60" :success="{ percent: 30 }" type="dashboard" />
|
|
</a-tooltip>
|
|
</div>
|
|
</template>
|