Skip to content
This repository was archived by the owner on Mar 12, 2024. It is now read-only.

Releases: johannschopplich/vue-unquery

v0.4.0

24 May 06:00
Compare
Choose a tag to compare

   ℹ️ Migration

-import { configure } from 'turbo-query'
+import { configure } from 'vue-unquery'

configure({
  async fetcher(key, { signal }) {
    const response = await fetch(key, { signal })
    if (!response.ok)
      throw new Error('Fetch request failed')
    return await response.json()
  },
})
    View changes on GitHub

v0.3.4

16 Nov 14:26
Compare
Choose a tag to compare

No significant changes

    View changes on GitHub

v0.3.3

27 Sep 08:03
Compare
Choose a tag to compare

No significant changes

    View changes on GitHub

v0.3.2

20 Sep 06:17
Compare
Choose a tag to compare

No significant changes

    View changes on GitHub

v0.3.1

19 Sep 15:31
Compare
Choose a tag to compare

   🐞 Bug Fixes

    View changes on GitHub

v0.3.0

17 Sep 08:20
Compare
Choose a tag to compare

   🚀 Features

    View changes on GitHub

v0.2.0

02 Jun 08:11
Compare
Choose a tag to compare

Features

  • suspense method useAsyncQuery (8a7f40e)