Vue.Draggable
Vue.Draggable copied to clipboard
Prevent user to move items from one column from todo to doing, but allow to be moved from doing to done
I have a kanban board with three lists: Todo, Doing, Done.
The customer shouldn't be able to move tasks to the Doing column. But admins can move items to that column.
Can anyone give me a hint of how can I do that?
Thanks in advance.
Add "draggable": "sortable class name" in the configuration item 《draggable v-bind="dragOptions"> </draggable》 const dragOptions = computed(() => { return { animation: 150, // Which elements are allowed to drag draggable: '.allowDrag', } })