vue.draggable.next icon indicating copy to clipboard operation
vue.draggable.next copied to clipboard

Required slot

Open kyrylo93 opened this issue 3 years ago • 1 comments

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

kyrylo93 avatar Aug 11 '21 08:08 kyrylo93

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

faxunil avatar Sep 24 '21 09:09 faxunil