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.

28 lines
528 B

---
order: 1
title: 迷你版
---
10 years ago
9 years ago
迷你版的步骤条,通过设置 `<Steps size="small">` 启用.
10 years ago
10 years ago
````jsx
import { Steps } from 'antd';
const Step = Steps.Step;
10 years ago
const steps = [{
10 years ago
status: 'finish',
title: '已完成',
10 years ago
}, {
status: 'process',
title: '进行中',
10 years ago
}, {
status: 'wait',
title: '待运行',
10 years ago
}, {
status: 'wait',
title: '待运行',
}].map((s, i) => <Step key={i} title={s.title} description={s.description} />);
10 years ago
ReactDOM.render(<Steps size="small" current={1}>{steps}</Steps>, mountNode);
10 years ago
````