mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 00:09:39 +08:00
6ad1b18a47
* fix: Drawer cover other elements when closed close #24287 * Add no-mask demo for Drawer
56 lines
957 B
Markdown
56 lines
957 B
Markdown
---
|
|
order: 0
|
|
title:
|
|
zh-CN: 基础抽屉
|
|
en-US: Basic
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
基础抽屉,点击触发按钮抽屉从右滑出,点击遮罩区关闭
|
|
|
|
## en-US
|
|
|
|
Basic drawer.
|
|
|
|
```tsx
|
|
import React, { useState } from 'react';
|
|
import { Drawer, Button } from 'antd';
|
|
|
|
const App: React.FC = () => {
|
|
const [visible, setVisible] = useState(false);
|
|
const showDrawer = () => {
|
|
setVisible(true);
|
|
};
|
|
const onClose = () => {
|
|
setVisible(false);
|
|
};
|
|
return (
|
|
<>
|
|
<Button type="primary" onClick={showDrawer}>
|
|
Open
|
|
</Button>
|
|
<Drawer
|
|
title="Basic Drawer"
|
|
placement="right"
|
|
closable={false}
|
|
onClose={onClose}
|
|
visible={visible}
|
|
>
|
|
<p>Some contents...</p>
|
|
<p>Some contents...</p>
|
|
<p>Some contents...</p>
|
|
</Drawer>
|
|
</>
|
|
);
|
|
};
|
|
|
|
ReactDOM.render(<App />, mountNode);
|
|
```
|
|
|
|
<style>
|
|
[data-theme='compact'] .ant-drawer-body p {
|
|
margin-bottom: 0;
|
|
}
|
|
</style>
|