Skip to content

2.2.0

Compare
Choose a tag to compare
@developit developit released this 06 Dec 21:34
· 208 commits to master since this release

New: Built-in support for async functions and actions that return promises!

connect('foo', {
  async getFoo(state) {
    return { foo: await (await fetch('/foo')).json() }
  }
})