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.

22 lines
355 B

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