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.
ant-design-vue/components/progress/demo/linecap.vue

26 lines
517 B

<docs>
---
order: 9
title:
zh-CN: 圆角/方角边缘
en-US: Square linecaps
---
## zh-CN
`strokeLinecap="square|round"` 可以调整进度条边缘的形状
## en-US
By setting `strokeLinecap="square"`, you can change the linecaps from round to square.
</docs>
<template>
<div>
<a-progress stroke-linecap="square" :percent="75" />
<a-progress stroke-linecap="square" :percent="75" type="circle" />
<a-progress stroke-linecap="square" :percent="75" type="dashboard" />
</div>
</template>