steps.vue 411 B

12345678910111213141516171819
  1. <template>
  2. <el-steps :active="active" finish-status="success">
  3. <el-step title="Step 1" />
  4. <el-step title="Step 2" />
  5. <el-step title="Step 3" />
  6. </el-steps>
  7. <el-button style="margin-top: 12px" @click="next">Next step</el-button>
  8. </template>
  9. <script lang="ts" setup>
  10. import { ref } from 'vue'
  11. const active = ref(0)
  12. const next = () => {
  13. if (active.value++ > 2) active.value = 0
  14. }
  15. </script>