- Ember.js v3.20 or above
- Ember CLI v3.20 or above
- ember-auto-import >= 2
- Node.js v12 or above
ember install ember-router-helpers
{{#let (route-params "parent.child") as |routeParams|}}
<a href={{routeParams.url}} class={{if routeParams.isActive "active" "inactive"}}>Blah</a>
{{/let}}
<button {{on "click" (transition-to "parent.child")}}></button>
<button onclick={{replace-with "parent.child"}}></button>
{{is-active "parent.child"}}
{{url-for "parent.child"}}