ant-design/components/popover/demo/basic.md

25 lines
317 B
Markdown
Raw Normal View History

2015-06-17 16:58:13 +08:00
# 基本
- order: 0
最简单的用法。
---
````jsx
import { Popover, Button } from 'antd';
const content = (
<div>
<p>内容</p>
<p>内容</p>
</div>
);
2015-06-17 16:58:13 +08:00
2015-10-20 16:47:55 +08:00
ReactDOM.render(
2015-06-17 16:58:13 +08:00
<Popover overlay={content} title="标题">
<Button type="primary">弹出卡片</Button>
2015-06-17 16:58:13 +08:00
</Popover>
, mountNode);
2015-06-17 16:58:13 +08:00
````