22 lines
549 B
Vue
22 lines
549 B
Vue
<template>
|
|
<LayoutContent header="创建数据集">
|
|
<el-steps :active="active" finish-status="success">
|
|
<el-step title="步骤 1"></el-step>
|
|
<el-step title="步骤 2"></el-step>
|
|
<el-step title="步骤 3"></el-step>
|
|
</el-steps>
|
|
|
|
<el-button style="margin-top: 12px" @click="next">下一步</el-button>
|
|
</LayoutContent>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
|
|
const active = ref(0)
|
|
|
|
const next = () => {
|
|
if (active.value++ > 2) active.value = 0
|
|
}
|
|
</script>
|
|
<style lang="scss" scoped></style>
|