ant-design/components/drawer/index.zh-CN.md

33 lines
1.1 KiB
Markdown
Raw Normal View History

2018-05-23 10:56:37 +08:00
---
type: Feedback
category: Components
subtitle: 抽屉
title: Drawer
---
抽屉容器
## 何时使用
## API
| 参数 | 说明 | 类型 | 默认值 |
| --- | --- | --- | --- |
| closable | 是否显示右上角的关闭按钮 | boolean | true |
| destroyOnClose | 关闭时销毁 Drawer 里的子元素 | boolean | false |
| getContainer | 指定 Drawer 挂载的 HTML 节点 | (instance): HTMLElement | () => document.body |
| maskClosable | 点击蒙层是否允许关闭 | boolean | true |
| mask | 是否展示遮罩 | Boolean | true |
| maskStyle | 遮罩样式 | object | {} |
| style | 可用于设置 Drawer 的样式,调整浮层位置等 | object | - |
| title | 标题 | string\|ReactNode | 无 |
| visible | Drawer 是否可见 | boolean | 无 |
| width | 宽度 | string\|number | 325 |
| wrapClassName | 对话框外层容器的类名 | string | - |
| zIndex | 设置 Drawer 的 `z-index` | Number | 1000 |
| placement | 抽屉的方向 | 'left' | 'right' | 'left'
| onClose | 点击遮罩层或右上角叉或取消按钮的回调 | function(e) | 无 |