2018-09-05 13:28:54 +00:00
|
|
|
## API
|
|
|
|
|
|
|
|
| 参数 | 说明 | 类型 | 默认值 |
|
|
|
|
| --- | --- | --- | --- |
|
|
|
|
| closable | 是否显示右上角的关闭按钮 | boolean | true |
|
|
|
|
| destroyOnClose | 关闭时销毁 Drawer 里的子元素 | boolean | false |
|
2019-01-02 12:22:19 +00:00
|
|
|
| getContainer | 指定 Drawer 挂载的 HTML 节点 | HTMLElement \| `() => HTMLElement` \| Selectors | 'body' |
|
2018-09-05 13:28:54 +00:00
|
|
|
| maskClosable | 点击蒙层是否允许关闭 | boolean | true |
|
|
|
|
| mask | 是否展示遮罩 | Boolean | true |
|
|
|
|
| maskStyle | 遮罩样式 | object | {} |
|
|
|
|
| title | 标题 | string \| slot | - |
|
|
|
|
| visible | Drawer 是否可见 | boolean | - |
|
|
|
|
| wrapClassName | 对话框外层容器的类名 | string | - |
|
2019-01-02 12:22:19 +00:00
|
|
|
| wrapStyle | 对话框外层容器的`style` | object | - |
|
2019-09-10 10:57:08 +00:00
|
|
|
| bodyStyle | 可用于设置 Drawer 的样式,调整浮层位置等 | object | - |
|
2018-12-08 11:07:04 +00:00
|
|
|
| width | 宽度 | string \| number | 256 |
|
|
|
|
| height | 高度, 在 `placement` 为 `top` 或 `bottom` 时使用 | string \| number | 256 |
|
2018-09-05 13:28:54 +00:00
|
|
|
| zIndex | 设置 Drawer 的 `z-index` | Number | 1000 |
|
2019-09-28 12:45:07 +00:00
|
|
|
| placement | 抽屉的方向 | 'top' \| 'right' \| 'bottom' \| 'left' | 'right' |
|
|
|
|
| handle | 设置后抽屉直接挂载到 DOM 上,你可以通过该 handle 控制抽屉打开关闭 | VNode \| slot | - |
|
2018-09-05 13:28:54 +00:00
|
|
|
|
|
|
|
## 方法
|
|
|
|
|
2019-09-28 12:45:07 +00:00
|
|
|
| 名称 | 描述 | 类型 | 默认值 |
|
|
|
|
| ----- | ------------------------------------ | ----------- | ------ |
|
|
|
|
| close | 点击遮罩层或右上角叉或取消按钮的回调 | function(e) | 无 |
|