-
Notifications
You must be signed in to change notification settings - Fork 562
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Events dragstop and resizestop are not triggering. #400
Comments
In the codebase, the events emitted are "dragStop" and "resizeStop", and Vue provide an automatic case transformation for event names. So try: |
I am curious why it worked in Vue2, Vue3 seems stricter than Vue2. |
Thank you @drag-stop and @resize-stop worked! |
Closing issue. |
Actually, I still don't understand. |
I am using latest bits.
Events dragstop and resizestop are not triggering.
@dragstop="console.log('Drag Stop')"
@resizestop="console.log('Resize Stop')"
Events dragging and resizing eventsare working fine.
@dragging="console.log('Dragging)"
@resizing="console.log('Resizing')"
The text was updated successfully, but these errors were encountered: