vue.draggable.next
vue.draggable.next copied to clipboard
Canceling a drag
Greetings
I'm trying to cancel the drag based on external conditions (in my case the number of items).
I've added @move="move" to the draggable object, and created the method:
move(evt) {
console.log('MOVE', evt);
return false;
}
I see the message in the log, but the drag proceeds normally. What am I doing wrong?
Thanks in advance
Regards
I think I found it: I guess I should use :move not @move...