18 lines
260 B
Markdown
18 lines
260 B
Markdown
|
<cn>
|
||
|
#### 仪表盘
|
||
|
By setting `type=dashboard`, you can get a dashboard style of progress easily.
|
||
|
</cn>
|
||
|
|
||
|
<us>
|
||
|
#### Dashboard
|
||
|
A standard progress bar.
|
||
|
</us>
|
||
|
|
||
|
```html
|
||
|
<template>
|
||
|
<div>
|
||
|
<a-progress type="dashboard" :percent="75" />
|
||
|
</div>
|
||
|
</template>
|
||
|
```
|