Slots
The component provides named slots for all handles and for each handle individually, so you can use your markup inside each one.
Customizing all handles.
<draggable-resizable-vue>
<template #handle>
...
</template>
</draggable-resizable-vue>
Or customize specific handle:
handle-tl
- Top lefthandle-tm
- Top middlehandle-tr
- Top righthandle-mr
- Middle righthandle-br
- Bottom righthandle-bm
- Bottom middlehandle-bl
- Bottom lefthandle-ml
- Middle left
<draggable-resizable-vue>
<template #handle-bl>
...
</template>
</draggable-resizable-vue>