DavideViolante/Angular-Full-Stack

How to display {{cats.length}} in app.component.html like it is in cats.component.html ?

adwulfran opened this issue · 2 comments

Hello,
In cats.component.html {{cats.length}} is displayed.
How can I display {{cats.length}} in app.component.html?

Note :
I could make it I imported cat-service and cat model in app.component.ts and add {{cats.length}} in app.component.html.
Problem: {{cats.length}} is well-displayed only when I refresh page. I want it instantly.

@dougal83 thanks for your answer. I could make it with https://angular.io/guide/component-interaction
via service