浏览代码

Steps: fix style with simple theme (#14610)

Jeff Wen 6 年之前
父节点
当前提交
0e8bc859e0
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/steps/src/step.vue

+ 1 - 1
packages/steps/src/step.vue

@@ -161,7 +161,7 @@ export default {
         style.transitionDelay = (-150 * this.index) + 'ms';
       }
 
-      style.borderWidth = step ? '1px' : 0;
+      style.borderWidth = step && !this.isSimple ? '1px' : 0;
       this.$parent.direction === 'vertical'
         ? style.height = step + '%'
         : style.width = step + '%';