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
In this example, the value of person is inherited correctly from the enclosing component:
person
<div> <SomeYieldingComponent> Hello {{person}} </SomeYieldingComponent> </div>
In this example, it is not:
<div> {{#each people as person}} <SomeYieldingComponent> Hello {{person}} </SomeYieldingComponent> {{/each} </div>
As far as I know {{yield}} is not usable in the online repl, so here is a full reproduction: https://github.com/TehShrike/svelte-yield-issue-repro
{{yield}}
The text was updated successfully, but these errors were encountered:
fix component yields inside each blocks (#230)
57ba95e
Merge branch 'master' into gh-230
caa2f1d
Merge pull request #243 from sveltejs/gh-230
9eee57e
fix component yields inside each blocks
Fixed in 1.6.3, thanks
Sorry, something went wrong.
correctly update yield fragment inside each, #230
20e1b05
Successfully merging a pull request may close this issue.
In this example, the value of
person
is inherited correctly from the enclosing component:In this example, it is not:
As far as I know
{{yield}}
is not usable in the online repl, so here is a full reproduction: https://github.com/TehShrike/svelte-yield-issue-reproThe text was updated successfully, but these errors were encountered: