2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 3
|
2016-07-04 10:49:26 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 含有辅助性文字介绍
|
|
|
|
en-US: Description
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-07-29 17:22:36 +08:00
|
|
|
|
2016-07-04 10:49:26 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-07-29 17:22:36 +08:00
|
|
|
含有辅助性文字介绍的警告提示。
|
|
|
|
|
2016-07-04 10:49:26 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
Additional description for alert message.
|
|
|
|
|
2017-02-13 10:55:53 +08:00
|
|
|
````jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Alert } from 'antd';
|
2015-07-29 17:22:36 +08:00
|
|
|
|
2015-10-20 16:47:55 +08:00
|
|
|
ReactDOM.render(<div>
|
2016-07-04 10:49:26 +08:00
|
|
|
<Alert
|
|
|
|
message="Success Text"
|
|
|
|
description="Success Description Success Description Success Description"
|
2016-06-06 13:54:10 +08:00
|
|
|
type="success"
|
|
|
|
/>
|
2016-07-04 10:49:26 +08:00
|
|
|
<Alert
|
|
|
|
message="Info Text"
|
|
|
|
description="Info Description Info Description Info Description Info Description"
|
2016-06-06 13:54:10 +08:00
|
|
|
type="info"
|
|
|
|
/>
|
2015-07-29 18:44:56 +08:00
|
|
|
<Alert
|
2016-07-04 10:49:26 +08:00
|
|
|
message="Warning Text"
|
|
|
|
description="Warning Description Warning Description Warning Description Warning Description"
|
2016-06-06 13:54:10 +08:00
|
|
|
type="warning"
|
|
|
|
/>
|
2015-07-29 18:44:56 +08:00
|
|
|
<Alert
|
2016-07-04 10:49:26 +08:00
|
|
|
message="Error Text"
|
|
|
|
description="Error Description Error Description Error Description Error Description"
|
2016-06-06 13:54:10 +08:00
|
|
|
type="error"
|
|
|
|
/>
|
2015-12-29 12:08:58 +08:00
|
|
|
</div>, mountNode);
|
2015-07-29 17:22:36 +08:00
|
|
|
````
|