You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design/components/steps/demo/simple.md

33 lines
623 B
Markdown

10 years ago
# 基本用法
10 years ago
- order: 0
简单的步骤条。
10 years ago
---
````jsx
import { Steps } from 'antd';
const Step = Steps.Step;
10 years ago
const steps = [{
10 years ago
title: '已完成',
description: '这里是多信息的描述啊'
10 years ago
}, {
title: '进行中',
description: '这里是多信息的耶哦耶哦哦耶哦耶'
10 years ago
}, {
title: '又一个待运行',
description: '描述啊描述啊'
10 years ago
}, {
title: '待运行',
description: '这里是多信息的描述啊'
10 years ago
}].map(function(s, i) {
return (
<Step key={i} title={s.title} description={s.description} />
);
});
10 years ago
ReactDOM.render(<Steps current={1}>{steps}</Steps>, mountNode);
10 years ago
````