Currently, I am utilizing Vue.Draggable (accessible at https://github.com/SortableJS/Vue.Draggable) to develop a kanban board that enables me to drag items from one list to another. A challenge I face is that when dragging a list item to the bottom of another list, it does not get added unless the mouse cursor touches an item in the second list while moving.
I am aware that setting ':empty-insert-threshold' for an empty list can expand the drop area to facilitate dropping items, but is there a way to achieve the same effect at the bottom of a non-empty list? If not, could we include a placeholder element to assist users in easily dropping the list item at the bottom of the list?
We have noticed that many users naturally try to place new items at the bottom of lists, which is why enhancing this functionality is crucial for us.