Przeglądaj źródła

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

Caaalabash 4 lat temu
rodzic
commit
b4aa2637d0
1 zmienionych plików z 1 dodań i 1 usunięć
  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;