It’s a particular case here.
<NavItem>
calls <LinkTo>
that requires the name of the route to link to (route
) and the value to fill the dynamic segment (model,
an ID here) to be separate.
<LinkTo
@route={{@route}}
@model={{@routeParam}}
>{{this.contents}}
</LinkTo>
Does that make sense?