You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In SortableJs, you are able to cancel a move by returning a value from onMove() call. However, because of the way the code is implemented right now, this functionality is completely disabled.
emit('onMove')
does not have the desirable effectIn SortableJs, you are able to cancel a move by returning a value from
onMove()
call. However, because of the way the code is implemented right now, this functionality is completely disabled.sortablejs-vue3/src/components/Sortable.vue
Lines 91 to 116 in 201bff6
Related issue vuejs/core#8865
The reason is because
emit()
does not return the value from the handler.Here are some proposals
SortableOption
instead of always overwriting themThe text was updated successfully, but these errors were encountered: