ant-design/components/steps/demo/error.md

30 lines
587 B
Markdown
Raw Normal View History

2016-04-06 17:07:22 +08:00
---
order: 6
2016-07-21 10:07:30 +08:00
title:
zh-CN: 步骤运行错误
en-US: Error status
2016-04-06 17:07:22 +08:00
---
2016-07-21 10:07:30 +08:00
## zh-CN
2016-04-06 17:07:22 +08:00
使用 Steps 的 `status` 属性来指定当前步骤的状态。
2016-07-21 10:07:30 +08:00
## en-US
By using `status` of `Steps`, you can specify the state for current step.
2017-02-13 10:55:53 +08:00
````jsx
2016-04-06 17:07:22 +08:00
import { Steps } from 'antd';
2018-06-27 15:55:04 +08:00
2016-04-06 17:07:22 +08:00
const Step = Steps.Step;
2016-07-21 14:20:49 +08:00
ReactDOM.render(
<Steps current={1} status="error">
<Step title="Finished" description="This is a description" />
<Step title="In Process" description="This is a description" />
<Step title="Waiting" description="This is a description" />
2018-06-27 15:55:04 +08:00
</Steps>,
2018-11-28 15:00:03 +08:00
mountNode
);
2016-04-06 17:07:22 +08:00
````