mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
25 lines
403 B
Markdown
25 lines
403 B
Markdown
---
|
|
order: 0
|
|
title: 基本
|
|
---
|
|
|
|
最简单的用法。
|
|
|
|
````jsx
|
|
import { Popconfirm, message } from 'antd';
|
|
|
|
function confirm() {
|
|
message.success('点击了确定');
|
|
}
|
|
|
|
function cancel() {
|
|
message.error('点击了取消');
|
|
}
|
|
|
|
ReactDOM.render(
|
|
<Popconfirm title="确定要删除这个任务吗?" onConfirm={confirm} onCancel={cancel}>
|
|
<a href="#">删除</a>
|
|
</Popconfirm>
|
|
, mountNode);
|
|
````
|