ant-design/components/confirm/index.md
2015-06-12 12:01:02 +08:00

25 lines
743 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Confirm
- category: Components
- chinese: 确认对话框
---
## 何时使用
当需要用户确认时使用
## api
为一个方法,参数为 object具体属性如下
| 参数 | 说明 | 类型 | 默认值 |
|------------|----------------|------------------|--------------|
| title | 标题 | React.Element or String | 无 |
| onOk | 点击确定回调,参数为关闭函数 | function | 无 |
| onCancel | 取消回调,参数为关闭函数 | function | 无 |
| width | 宽度 | String or Number | 375 |
| iconClassName | 图标央样式名 | String | anticon-exclamation-circle |