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

41 lines
596 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
title:
zh-CN: 基本
en-US: Basic
2016-03-31 09:40:55 +08:00
---
2015-06-17 16:58:13 +08:00
## zh-CN
2016-03-24 11:25:23 +08:00
最简单的用法,浮层的大小由内容区域决定。
2015-06-17 16:58:13 +08:00
## en-US
The most basic example. The size of the floating layer depends on the contents region.
```tsx
2022-05-21 22:14:15 +08:00
import { Button, Popover } from 'antd';
import React from 'react';
const content = (
<div>
2016-09-29 13:43:55 +08:00
<p>Content</p>
<p>Content</p>
</div>
);
2015-06-17 16:58:13 +08:00
const App: React.FC = () => (
2016-09-29 13:43:55 +08:00
<Popover content={content} title="Title">
<Button type="primary">Hover me</Button>
</Popover>
2018-11-28 15:00:03 +08:00
);
export default App;
2019-05-07 14:57:32 +08:00
```
<style>
.ant-popover-content p {
margin: 0;
}
</style>