Vue.Draggable
Vue.Draggable copied to clipboard
Cursor icon when dragging (drag and drop, rock and roll).
First check https://github.com/SortableJS/Vue.Draggable/blob/master/CONTRIBUTING.md
Hi, please tell me, how can I display any other cursor such as grab and grabbing, instead default cursor with rectangle.
Jsfiddle link

Step by step scenario
Just simply dragging an item.
Actual Solution
Unknown
Expected Solution
grabbing cursor when I dragging 🗡️
same problem here
Has anyone been able to find a solution?
Set props "force-fallback" for component
<Draggable :force-fallback="true" ... >
</Draggable>
And write styles for list drag list items
.list-item {
cursor: grab;
cursor: -moz-grab;
cursor: -webkit-grab;
}
.list-item:active {
cursor: grabbing;
cursor: -moz-grabbing;
cursor: -webkit-grabbing;
}
This resolve problem with cursor, but maybe created new...