ant-design/components/alert/index.md

24 lines
1.0 KiB
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 17:22:36 +08:00
| closable | 可选参数,是否显示关闭按钮 | Boolean | false |
| closeText | 可选参数,自定义关闭 | String | 无 |
| message | 必选参数,警告提示内容 | String | 无 |
| description | 可选参数,警告提示的辅助性文字介绍 | String | 无 |
| onClose | 可选参数,关闭时触发的回调函数 | Function | 无 |