Back to Query

{{ post.title }}

examples/angular/router/src/app/components/post.component.html

5.90.3284 B
Original Source

Back @if (postQuery.isPending()) { Loading... } @else if (postQuery.isError()) { Error: {{ postQuery.error().message }} } @if (postQuery.isSuccess()) { @let post = postQuery.data();

{{ post.title }}

{{ post.body }}

@if (postQuery.isFetching()) { Background Updating... } }