vue.draggable.next
vue.draggable.next copied to clipboard
Required slot
Hi, first I want to say thank you!
Sometimes I used this package as a draggable zone for copying something or like 'Drag here to remove item' zone.
Right now with required
<template #item
I had to add some CSS classes to hide all items inside, otherwise, they will be rendered.
<template #item="{element}"> <div class="group-students"> <div class="hidden">{{element.name}}</div> </div> </template>
It's not critical but increases the amounts of rows in code.
Maybe there is a way to remove required slot?
THank you
Hi! I have issue with nested draggable. I copypasted the sample code from here. Im getting this error:
Error: draggable element must have an item slot```
Do You have maybe any idea, how I could solve it?
Thanks