Back to Query

{{ post.title }}

examples/angular/basic-persister/src/app/components/post.component.html

5.90.3258 B
Original Source

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

{{ post.title }}

{{ post.body }}

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