You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
352 B

# 基本
- order: 0
最简单的用法。
---
````jsx
import { Popover, Button } from 'antd';
const content = <div>
<p>内容</p>
10 years ago
<p>内容</p>
</div>;
9 years ago
ReactDOM.render(
<Popover overlay={content} title="标题">
<Button type="primary">弹出卡片</Button>
</Popover>
, document.getElementById('components-popover-demo-basic'));
````