mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-16 01:29:11 +08:00
62949a6bd6
* feat: Drawer supports extra * docs: add description for drawer extra demo * docs: add extra in API * update snapshot * fix rtl style * fix demo typescript errors * update snapshot * design for close icon only * update snapshot * update demo and default width * add size prop * improve demo * update snapshot * update demo * update snapshot
50 lines
896 B
Markdown
50 lines
896 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" 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>
|