[Vuejs]-Vue draggable. Prevent drop on specific node and allow drop on specific node

0๐Ÿ‘

โœ…

  1. You should wrap each your column in draggable
  2. Add @change event listener on each column
  3. In that event listener you can check whether that item must be processed or not: if the item is not suitable for that area you do nothing, otherwise you do something.

0๐Ÿ‘

You can add โ€˜moveโ€™ prop and return false,
refer this : https://github.com/SortableJS/Vue.Draggable/issues/897

Leave a comment