Last active
November 13, 2016 14:49
-
-
Save mastermoo/762f92823fb71acc5f0988287f2475bb to your computer and use it in GitHub Desktop.
This file contains 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
// store.js | |
class CounterStore { | |
... | |
setCounterAsync() { | |
fetch('/path/to/api') | |
.then((result) => this.counter = result) | |
.done(); | |
} | |
} | |
export default new CounterStore(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment