Last active
June 19, 2017 08:03
-
-
Save gskachkov/ffc016868cac4b5664a689d92f08d904 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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