mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
20 lines
411 B
Vue
20 lines
411 B
Vue
<template>
|
|
<el-steps :active="active" finish-status="success">
|
|
<el-step title="Step 1" />
|
|
<el-step title="Step 2" />
|
|
<el-step title="Step 3" />
|
|
</el-steps>
|
|
|
|
<el-button style="margin-top: 12px" @click="next">Next step</el-button>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
|
|
const active = ref(0)
|
|
|
|
const next = () => {
|
|
if (active.value++ > 2) active.value = 0
|
|
}
|
|
</script>
|