ant-design-vue/antdv-demo/docs/steps/demo/simple.md

26 lines
541 B
Markdown
Raw Normal View History

2021-03-12 07:48:30 +00:00
<cn>
#### 基本用法
简单的步骤条。
</cn>
<us>
#### Basic
The most basic step bar.
</us>
```vue
<template>
<a-steps :current="1">
<a-step>
<!-- <span slot="title">Finished</span> -->
<template slot="title">
Finished
</template>
<span slot="description">This is a description.</span>
</a-step>
<a-step title="In Progress" sub-title="Left 00:00:08" description="This is a description." />
<a-step title="Waiting" description="This is a description." />
</a-steps>
</template>
```