guides-source icon indicating copy to clipboard operation
guides-source copied to clipboard

Simple Typo Error !!!

Open ItsPrabuSelvam opened this issue 1 year ago • 0 comments

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

ItsPrabuSelvam avatar Sep 09 '24 11:09 ItsPrabuSelvam