0
点赞
收藏
分享

微信扫一扫

Vue+ElementUI el-steps 完成后不使用对勾,一直用数字来显示进度条

天天天蓝loveyou 04-09 13:00 阅读 2

1、效果图

2、代码部分--去掉 finish-status="success"

<el-steps :active="activeStep" finish-status="success" process-status="process">
  <el-step v-for="(item, index) in steps" :key="index" :title="item.title" :class="index+1 == activeStep?'isCurrent':''">
    <template slot="icon">
      <div class="custom-step-icon">
        <span class="step-num"> {{ item.number }}</span>
      </div>
    </template>
  </el-step>
</el-steps>
举报

相关推荐

0 条评论