Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 461 Bytes

File metadata and controls

23 lines (14 loc) · 461 Bytes

ember/template-no-attrs-in-components

This rule prevents the usage of this.attrs property to access values passed to the component. Use @arg syntax instead.

Examples

This rule forbids the following:

{{this.attrs.foo}}

This rule allows the following:

{{@foo}}

References