Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 506 Bytes

deprecated-each-syntax.md

File metadata and controls

26 lines (18 loc) · 506 Bytes

deprecated-each-syntax

In Ember 2.0, support for using the in form of the {{#each}} helper has been removed.

Examples

This rule forbids the following:

{{#each post in posts}}
  <li>{{post.name}}</li>
{{/each}}

This rule allows the following:

{{#each posts as |post|}}
  <li>{{post.name}}</li>
{{/each}}

References