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
v3 alpha27
When using <svelte:options bind:props in a component where there is slot default content, the props object contains $$slot_default and $$scope. This causes an error when using the spread operator on html elements eg <h1 {...props} https://v3.svelte.technology/repl?version=3.0.0-alpha27&gist=b34f72aee305df48c06618219306d1db
<svelte:options bind:props
$$slot_default
$$scope
<h1 {...props}
the $ prefixed prop elements are not there if there is no default slot content
$
The text was updated successfully, but these errors were encountered:
remove internal gubbins when using bind:props - fixes #2038
a50c84e
Merge pull request #2083 from sveltejs/gh-2038
94dfeec
remove internal gubbins when using bind:props
Successfully merging a pull request may close this issue.
v3 alpha27
When using
<svelte:options bind:props
in a component where there is slot default content, the props object contains$$slot_default
and$$scope
. This causes an error when using the spread operator on html elements eg<h1 {...props}
https://v3.svelte.technology/repl?version=3.0.0-alpha27&gist=b34f72aee305df48c06618219306d1db
the
$
prefixed prop elements are not there if there is no default slot contentThe text was updated successfully, but these errors were encountered: