mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 20:19:44 +08:00
46 lines
811 B
Markdown
Executable File
46 lines
811 B
Markdown
Executable File
---
|
|
order: 3
|
|
title:
|
|
zh-CN: 从浮层内关闭
|
|
en-US: Controlling the close of the dialog
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
使用 `visible` 属性控制浮层显示。
|
|
|
|
## en-US
|
|
|
|
Use `visible` prop to control the display of the card.
|
|
|
|
```tsx
|
|
import { Button, Popover } from 'antd';
|
|
import React, { useState } from 'react';
|
|
|
|
const App: React.FC = () => {
|
|
const [visible, setVisible] = useState(false);
|
|
|
|
const hide = () => {
|
|
setVisible(false);
|
|
};
|
|
|
|
const handleVisibleChange = (newVisible: boolean) => {
|
|
setVisible(newVisible);
|
|
};
|
|
|
|
return (
|
|
<Popover
|
|
content={<a onClick={hide}>Close</a>}
|
|
title="Title"
|
|
trigger="click"
|
|
visible={visible}
|
|
onVisibleChange={handleVisibleChange}
|
|
>
|
|
<Button type="primary">Click me</Button>
|
|
</Popover>
|
|
);
|
|
};
|
|
|
|
export default App;
|
|
```
|