DragDropWindow
This component allows you to create a draggable window.
It depends on VueWindow.
Example

<drag-drop-window
:minHeight="50"
:maxHeight="100"
:minWidth="50"
:maxWidth="100"
:isOpen="true"
title="Title"
/>
Props
| Name | Description | Type | Required | Default |
|---|---|---|---|---|
| title | Allows you to indicate the title of the window | String | false | "" |
| resizable | Allows you to indicate if the window is resizable | Boolean | false | true |
| showCloseButton | Allows you to indicate if the close bottom will be displayed or not | Boolean | false | true |
| isOpen | Toogle for open and close | Boolean | false | false |
| minWidth | Allows you to indicate the min width of the window | Number | false | 300 |
| minHeight | Allows you to indicate the min height of the window | Number | false | 200 |
| maxWidth | Allows you to indicate the max width of the window | Number | false | undefined |
| maxHeight | Allows you to indicate the max height of the window | Number | false | undefined |
Events
| Event Name | Description | Parameters |
|---|---|---|
| toogleOpen | - | - |
Slots
| Name | Description | Default Slot Content |
|---|---|---|
| default | - | - |