ant-design-vue/components/progress/demo/linecap.md
2019-10-09 18:32:23 +08:00

462 B

#### 圆角/方角边缘 `strokeLinecap="square|round"` 可以调整进度条边缘的形状。 #### Square linecaps `strokeLinecap="square|round"` 可以调整进度条边缘的形状。
<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>