2018-09-05 13:28:54 +00:00
## API
| Property | Description | Type | Default |
2019-09-28 12:45:07 +00:00
| --- | --- | --- | --- |
2018-09-05 13:28:54 +00:00
| closable | Whether a close (x) button is visible on top right of the Drawer dialog or not. | boolean | true |
| destroyOnClose | Whether to unmount child components on closing drawer or not. | boolean | false |
2019-01-02 12:22:19 +00:00
| getContainer | Return the mounted node for Drawer. | HTMLElement \| `() => HTMLElement` \| Selectors | 'body' |
2018-09-05 13:28:54 +00:00
| mask | Whether to show mask or not. | Boolean | true |
| maskClosable | Clicking on the mask (area outside the Drawer) to close the Drawer or not. | boolean | true |
| maskStyle | Style for Drawer's mask element. | object | {} |
| title | The title for Drawer. | string\|slot | - |
| visible | Whether the Drawer dialog is visible or not. | boolean | false |
| wrapClassName | The class name of the container of the Drawer dialog. | string | - |
2019-09-28 12:45:07 +00:00
| wrapStyle | The style of the container of the Drawer dialog. | object | - |
2019-09-10 10:57:08 +00:00
| bodyStyle | Style of floating layer, typically used for adjusting its position. | object | - |
2018-12-08 11:07:04 +00:00
| width | Width of the Drawer dialog. | string\|number | 256 |
| height | placement is `top` or `bottom` , height of the Drawer dialog. | string\|number | - |
2018-09-05 13:28:54 +00:00
| zIndex | The `z-index` of the Drawer. | Number | 1000 |
2019-09-28 12:45:07 +00:00
| placement | The placement of the Drawer. | 'top' \| 'right' \| 'bottom' \| 'left' | 'right' |
2019-04-04 15:28:50 +00:00
| handle | After setting, the drawer is directly mounted on the DOM, and you can control the drawer to open or close through this `handle` . | VNode \| slot | - |
2018-09-05 13:28:54 +00:00
## Methods
| Name | Description | Type | Default |
2019-09-28 12:45:07 +00:00
| --- | --- | --- | --- |
2018-09-05 13:28:54 +00:00
| close | Specify a callback that will be called when a user clicks mask, close button or Cancel button. | function(e) | - |