代码是这样的:
<svg :width="size" :height="size" class="circle">
<circle
:r="radius"
:cx="center"
:cy="center"
:stroke="backgroundColor"
:stroke-width="strokeWidth"
fill="none"
></circle>
<circle
:r="radius"
:cx="center"
:cy="center"
:stroke="color"
:stroke-width="strokeWidth"
:stroke-dasharray="circumference"
:stroke-dashoffset="offset"
fill="none"
></circle>
</svg>
现在圆环上的进度条起点和终点是直角边,我想设置成圆角的,具体应该怎么改?麻烦带佬们看一下