ant-design/components/steps/demo/vertical-small.md

27 lines
564 B
Markdown
Raw Normal View History

2015-08-27 13:20:31 +08:00
# 竖直方向的小型步骤条
- order: 5
简单的竖直方向的小型步骤条。
---
````jsx
import { Steps } from 'antd';
const Step = Steps.Step;
2015-08-27 13:20:31 +08:00
const steps = [{
2015-08-27 13:20:31 +08:00
title: '已完成',
2015-09-01 15:30:51 +08:00
description: '这里是信息的描述'
2015-08-27 13:20:31 +08:00
}, {
title: '进行中',
2015-09-01 15:30:51 +08:00
description: '这里是信息的描述'
2015-08-27 13:20:31 +08:00
}, {
title: '待运行',
2015-09-01 15:30:51 +08:00
description: '这里是信息的描述'
}].map((s, i) => <Step key={i} title={s.title} description={s.description} />);
2015-08-27 13:20:31 +08:00
2015-12-16 15:25:15 +08:00
ReactDOM.render(<Steps size="small" direction="vertical" current={1}>{steps}</Steps>,
mountNode);
2015-08-27 13:20:31 +08:00
````