We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Event handlers using onXXX={withModifiers(..., ["capture"])} are not registered in "capture" mode.
onXXX={withModifiers(..., ["capture"])}
Attempt to register an event handler using the readme's suggested syntax of withModifiers
withModifiers
Reproduction Link (required): https://stackblitz.com/edit/vitejs-vite-c3hwy2?file=src%2FApp.vue,index.html
Event handlers can be registered in capture mode.
#533
The text was updated successfully, but these errors were encountered:
onClickCapture works but there's not a declared type for it, so TSC kicks it out. This leaves us with the workaround
onClickCapture
<div {...{onClickCapture: evt => {}}}>...</div>
Maybe types can be added for *Capture suffixed events?
*Capture
Sorry, something went wrong.
No branches or pull requests
🐛 Bug description
Event handlers using
onXXX={withModifiers(..., ["capture"])}
are not registered in "capture" mode.📝 Steps to reproduce
Attempt to register an event handler using the readme's suggested syntax of
withModifiers
Reproduction Link (required):
https://stackblitz.com/edit/vitejs-vite-c3hwy2?file=src%2FApp.vue,index.html
🏞 Desired result
Event handlers can be registered in capture mode.
🚑 Other information
#533
The text was updated successfully, but these errors were encountered: