mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
21 lines
534 B
Markdown
21 lines
534 B
Markdown
---
|
|
layout: templateLayout
|
|
---
|
|
```vue
|
|
<template>
|
|
<Steps :current="2" size="small">
|
|
<Step title="已完成" content="这里是该步骤的描述信息"></Step>
|
|
<Step title="进行中" content="这里是该步骤的描述信息"></Step>
|
|
<Step title="待进行" content="这里是该步骤的描述信息"></Step>
|
|
<Step title="待进行" content="这里是该步骤的描述信息"></Step>
|
|
</Steps>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
data(){
|
|
return {
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
``` |