소스 검색

fix(progress): fix attribute error (#19985)

Caaalabash 4 년 전
부모
커밋
b4aa2637d0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      packages/progress/src/progress.vue

+ 1 - 1
packages/progress/src/progress.vue

@@ -216,7 +216,7 @@
           if (typeof seriesColor === 'string') {
             return {
               color: seriesColor,
-              progress: (index + 1) * span
+              percentage: (index + 1) * span
             };
           }
           return seriesColor;