You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{#each this.model as |post|}}
{{!-- either foo-component or bar-component --}}
{{#let (component this.componentName) as |Post|}}
<Post @post={{post}} />
{{/let}}
{{/each}}
{{#let (component this.componentName) as |Post|}} should be changed to {{#let (component post.componentName) as |Post|}}
Here the 'this' in the block refers to a controller, which leads to misunderstanding
The text was updated successfully, but these errors were encountered:
site url : https://guides.emberjs.com/v3.14.0/components/
{{#each this.model as |post|}}
{{!-- either foo-component or bar-component --}}
{{#let (component this.componentName) as |Post|}}
<Post @post={{post}} />
{{/let}}
{{/each}}
{{#let (component this.componentName) as |Post|}} should be changed to {{#let (component post.componentName) as |Post|}}
Here the 'this' in the block refers to a controller, which leads to misunderstanding
The text was updated successfully, but these errors were encountered: