@vueuse/integrations 12.0.0 → 12.1.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 +4 -4
package/README.md CHANGED
@@ -35,10 +35,10 @@ npm i @vueuse/integrations
35
35
  For better tree-shaking result, import functions from submodules, for example:
36
36
 
37
37
  ```ts
38
- import { useAxios } from '@vueuse/integrations/useAxios'
39
-
40
38
  // Don't
41
39
  import { useAxios } from '@vueuse/integrations'
40
+
41
+ import { useAxios } from '@vueuse/integrations/useAxios'
42
42
  ```
43
43
 
44
44
  ## License
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vueuse/integrations",
3
- "version": "12.0.0",
3
+ "version": "12.1.0",
4
4
  "description": "Integration wrappers for utility libraries",
5
5
  "author": "Anthony Fu <https://github.com/antfu>",
6
6
  "license": "MIT",
@@ -145,8 +145,8 @@
145
145
  }
146
146
  },
147
147
  "dependencies": {
148
- "@vueuse/core": "12.0.0",
149
- "@vueuse/shared": "12.0.0",
148
+ "@vueuse/core": "12.1.0",
149
+ "@vueuse/shared": "12.1.0",
150
150
  "vue": "^3.5.13"
151
151
  }
152
- }
152
+ }