You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
569 B

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