robinrodricks / vue3-touch-events

Simple touch events support for vue.js 3
MIT License
216 stars 27 forks source link

Mouse leave should trigger drag end event #8

Open teddibaer opened 2 years ago

teddibaer commented 2 years ago

It seems that a drag using the mouse does not trigger the drag end event when the area (the component) is left, so the drag is still active when re-entering the area.

lukastaegert commented 5 months ago

+1 For us, the main problem here is that when the mouse is then released outside the drag area and the user moves back over the component, it will again behave like it is dragged until the user clicks a second time. This is a very broken experience for the user. We could work around this manually if #9 was implemented.