ant-design/components/popover/demo/basic.md
2016-04-01 10:08:19 +08:00

361 B

order title
0 基本

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

import { Popover, Button } from 'antd';

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

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