@tanstack/vue-query 4.9.0 → 4.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -48,7 +48,7 @@ Visit https://tanstack.com/query/v4/docs/adapters/vue-query
48
48
 
49
49
  ```ts
50
50
  import { createApp } from "vue";
51
- import { VueQueryPlugin } from "vue-query";
51
+ import { VueQueryPlugin } from "@tanstack/vue-query";
52
52
 
53
53
  import App from "./App.vue";
54
54
 
@@ -59,7 +59,7 @@ Visit https://tanstack.com/query/v4/docs/adapters/vue-query
59
59
 
60
60
  ```ts
61
61
  import { defineComponent } from "vue";
62
- import { useQuery } from "vue-query";
62
+ import { useQuery } from "@tanstack/vue-query";
63
63
 
64
64
  export default defineComponent({
65
65
  name: "MyComponent",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/vue-query",
3
- "version": "4.9.0",
3
+ "version": "4.10.0",
4
4
  "description": "Hooks for managing, caching and syncing asynchronous and remote data in Vue",
5
5
  "author": "Damian Osipiuk",
6
6
  "license": "MIT",
@@ -32,7 +32,7 @@
32
32
  "vue2": "npm:vue@2"
33
33
  },
34
34
  "dependencies": {
35
- "@tanstack/query-core": "4.9.0",
35
+ "@tanstack/query-core": "4.10.0",
36
36
  "@vue/devtools-api": "^6.4.2",
37
37
  "match-sorter": "^6.3.1",
38
38
  "vue-demi": "^0.13.11"