Skip to content

Instantly share code, notes, and snippets.

@gskachkov
Last active June 19, 2017 08:03
Show Gist options
  • Save gskachkov/ffc016868cac4b5664a689d92f08d904 to your computer and use it in GitHub Desktop.
Save gskachkov/ffc016868cac4b5664a689d92f08d904 to your computer and use it in GitHub Desktop.
import ngAsync from 'ng-async.decorator';
class FooController {
.....
@ngAsync()
async doFoo() {
this.asyncResult = await this.loadData();
this.status = 'loaded';
}
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment