ant-design/components/alert/index.md

23 lines
929 B
Markdown
Raw Normal View History

2015-07-22 11:06:55 +08:00
# Alert
2015-07-27 20:53:08 +08:00
- category: Components
- chinese: 警告提示
2015-07-22 11:06:55 +08:00
---
2015-07-27 20:53:08 +08:00
警告提示。
## 何时使用
- 当系统需要向用户显示警告的信息时。
## API
| 参数 | 说明 | 类型 | 默认值 |
|----------- |--------------------------------------------------------- | ---------- |-------|
2015-07-29 10:27:31 +08:00
| type | 必选参数,指定警告提示的样式,有四种选择`success`、`info`、`warn`、`error` | String | 无 |
2015-07-29 15:22:47 +08:00
| closeText | 可选参数,自定义关闭 | String | 无 |
2015-07-29 10:27:31 +08:00
| message | 可选参数,标题 | String | 无 |
| description | 必选参数,内容 | String | 无 |
2015-07-29 15:22:47 +08:00
| onClose | 可选参数,关闭时触发的回调函数 | Function | 无 |