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

46 lines
811 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
title:
zh-CN: 从浮层内关闭
en-US: Controlling the close of the dialog
2016-03-31 09:40:55 +08:00
---
2015-11-10 16:07:23 +08:00
## zh-CN
2015-11-10 16:07:23 +08:00
使用 `visible` 属性控制浮层显示。
## en-US
Use `visible` prop to control the display of the card.
```tsx
2022-05-21 22:14:15 +08:00
import { Button, Popover } from 'antd';
import React, { useState } from 'react';
2015-11-10 16:07:23 +08:00
const App: React.FC = () => {
const [visible, setVisible] = useState(false);
2018-06-27 15:55:04 +08:00
const hide = () => {
setVisible(false);
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
const handleVisibleChange = (newVisible: boolean) => {
setVisible(newVisible);
2019-05-07 14:57:32 +08:00
};
2018-06-27 15:55:04 +08:00
return (
<Popover
content={<a onClick={hide}>Close</a>}
title="Title"
trigger="click"
visible={visible}
onVisibleChange={handleVisibleChange}
>
<Button type="primary">Click me</Button>
</Popover>
);
};
2015-11-10 16:07:23 +08:00
export default App;
2019-05-07 14:57:32 +08:00
```