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