3 changed files with 37 additions and 2 deletions
@ -0,0 +1,29 @@ |
|||||
|
<!-- |
||||
|
@ 作者: 秦东 |
||||
|
@ 时间: 2026-03-25 10:19:33 |
||||
|
@ 备注: 自定义App基础设置及权限设置 |
||||
|
--> |
||||
|
<script lang='ts' setup> |
||||
|
const pickStep = ref(1); |
||||
|
</script> |
||||
|
<template> |
||||
|
<div class="app-content"> |
||||
|
<el-steps style="max-width: 600px" :active="1"> |
||||
|
<el-step title="Step 1" > |
||||
|
<template #icon> |
||||
|
<i class="fa fa-cog"></i> |
||||
|
</template> |
||||
|
</el-step> |
||||
|
<el-step title="Step 2" > |
||||
|
<template #icon> |
||||
|
<i class="fa fa-search"></i> |
||||
|
</template> |
||||
|
</el-step> |
||||
|
</el-steps> |
||||
|
</div> |
||||
|
</template> |
||||
|
<style lang='scss' scoped> |
||||
|
.app-content { |
||||
|
|
||||
|
} |
||||
|
</style> |
||||
Loading…
Reference in new issue