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

493 B
Executable File

order title
0
zh-CN en-US
基本 Basic

zh-CN

最简单的用法,浮层的大小由内容区域决定。

en-US

The most basic example. The size of the floating layer depends on the contents region.

import { Popover, Button } from 'antd';

const content = (
  <div>
    <p>内容</p>
    <p>内容</p>
  </div>
);

ReactDOM.render(
  <Popover content={content} title="标题">
    <Button type="primary">弹出卡片</Button>
  </Popover>
, mountNode);