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
When passing a function prop with spread props it won’t work.
<script> let props = { 'on:click': () => alert('Hi') } </script> <h1 {...props}>Hello!</h1>
The on:click handler is added as HTML attribute with quotes on:click="() => alert('Hi')".
on:click
on:click="() => alert('Hi')"
https://svelte.dev/repl/d2c090b0841741c4b8a911ee6c2daa44?version=4.2.17
No response
–
annoyance
The text was updated successfully, but these errors were encountered:
Duplicate of #5112. This is addressed in Svelte 5 in the event handler case (https://svelte-5-preview.vercel.app/docs/event-handlers). But, by design, directives aren't interpreted at runtime when added as attributes.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
When passing a function prop with spread props it won’t work.
The
on:click
handler is added as HTML attribute with quoteson:click="() => alert('Hi')"
.Reproduction
https://svelte.dev/repl/d2c090b0841741c4b8a911ee6c2daa44?version=4.2.17
Logs
No response
System Info
Severity
annoyance
The text was updated successfully, but these errors were encountered: