Skip to content

Instantly share code, notes, and snippets.

@mastermoo
Last active November 13, 2016 14:49
Show Gist options
  • Save mastermoo/762f92823fb71acc5f0988287f2475bb to your computer and use it in GitHub Desktop.
Save mastermoo/762f92823fb71acc5f0988287f2475bb to your computer and use it in GitHub Desktop.
// 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