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.
21 lines
464 B
21 lines
464 B
<cn>
|
|
#### 圆角/方角边缘
|
|
`strokeLinecap="square|round"` 可以调整进度条边缘的形状。
|
|
</cn>
|
|
|
|
<us>
|
|
#### Square linecaps
|
|
`strokeLinecap="square|round"` 可以调整进度条边缘的形状。
|
|
</us>
|
|
|
|
```html
|
|
<template>
|
|
<div>
|
|
<a-progress strokeLinecap="square" :percent="75" />
|
|
<a-progress strokeLinecap="square" :percent="75" type="circle" />
|
|
<a-progress strokeLinecap="square" :percent="75" type="dashboard" />
|
|
</div>
|
|
</template>
|
|
```
|
|
|