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.

36 lines
600 B

10 years ago
# 迷你版
10 years ago
- order: 1
10 years ago
迷你版的步进条,通过设置`<Steps size='small'>`启用.
---
10 years ago
````jsx
10 years ago
var Steps = antd.Steps;
var container = document.getElementById('components-steps-demo-small-size');
var steps = [{
status: 'finish',
title: '已完成'
}, {
status: 'process',
title: '进行中'
}, {
status: 'wait',
title: '待运行'
}, {
status: 'wait',
title: '待运行'
}].map(function(s, i) {
10 years ago
return (<Steps.Step
key={i}
status={s.status}
title={s.title}>
</Steps.Step>
);
});
React.render(<Steps size="small">{steps}</Steps>, container);
````