Usage
<Await @promise={{this.fetchPosts}} as |await|>
<await.Pending>
Loading posts...
</await.Pending>
<await.Fulfilled as |posts|>
{{#each posts as |post|}}
{{post.title}}
{{/each}}
</await.Fulfilled>
<await.Rejected>
Something went wrong :(
</await.Rejected>
</Await> <Await @promise={{this.fetchPosts}} as |await|>
<div class={{if await.isPending "loading"}}>
Hey there :) This text will spin when content is loading.
</div>
</Await>Last updated