« All deprecation guides

Deprecation Guide for as syntax for {{with}}

Renaming a value using {{with}} has been possible using the as syntax. Block params, introduces in Ember 1.10, obsolete the as syntax.

With helpers should be updated to use block params. For example this helper:

{{#with foo as bar}}

Can be converted as follows:

{{#with foo as |bar|}}