Skip to content
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

Spread props with functions won’t work #11677

Closed
gregorw opened this issue May 17, 2024 · 1 comment
Closed

Spread props with functions won’t work #11677

gregorw opened this issue May 17, 2024 · 1 comment

Comments

@gregorw
Copy link

gregorw commented May 17, 2024

Describe the bug

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')".

Reproduction

https://svelte.dev/repl/d2c090b0841741c4b8a911ee6c2daa44?version=4.2.17

Logs

No response

System Info

Severity

annoyance

@Conduitry
Copy link
Member

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.

@Conduitry Conduitry closed this as not planned Won't fix, can't repro, duplicate, stale May 17, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants