@vueuse/nuxt 7.4.3 → 7.5.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.
- package/indexes.json +28 -0
- package/package.json +2 -2
package/indexes.json
CHANGED
|
@@ -610,6 +610,13 @@
|
|
|
610
610
|
"category": "Browser",
|
|
611
611
|
"description": "reactive viewport breakpoints"
|
|
612
612
|
},
|
|
613
|
+
{
|
|
614
|
+
"name": "useBroadcastChannel",
|
|
615
|
+
"package": "core",
|
|
616
|
+
"docs": "https://vueuse.org/core/useBroadcastChannel/",
|
|
617
|
+
"category": "Browser",
|
|
618
|
+
"description": "reactive [BroadcastChannel API](https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel)"
|
|
619
|
+
},
|
|
613
620
|
{
|
|
614
621
|
"name": "useBrowserLocation",
|
|
615
622
|
"package": "core",
|
|
@@ -906,6 +913,13 @@
|
|
|
906
913
|
"category": "Browser",
|
|
907
914
|
"description": "reactive [Media Query](https://developer.mozilla.org/en-US/docs/Web/CSS/Media_Queries/Testing_media_queries)"
|
|
908
915
|
},
|
|
916
|
+
{
|
|
917
|
+
"name": "useMemoize",
|
|
918
|
+
"package": "core",
|
|
919
|
+
"docs": "https://vueuse.org/core/useMemoize/",
|
|
920
|
+
"category": "Utilities",
|
|
921
|
+
"description": "cache results of functions depending on arguments and keep it reactive"
|
|
922
|
+
},
|
|
909
923
|
{
|
|
910
924
|
"name": "useMemory",
|
|
911
925
|
"package": "core",
|
|
@@ -1221,6 +1235,13 @@
|
|
|
1221
1235
|
"category": "Component",
|
|
1222
1236
|
"description": "shorthand for props v-model binding"
|
|
1223
1237
|
},
|
|
1238
|
+
{
|
|
1239
|
+
"name": "useVibrate",
|
|
1240
|
+
"package": "core",
|
|
1241
|
+
"docs": "https://vueuse.org/core/useVibrate/",
|
|
1242
|
+
"category": "Browser",
|
|
1243
|
+
"description": "reactive vibration web API"
|
|
1244
|
+
},
|
|
1224
1245
|
{
|
|
1225
1246
|
"name": "useVirtualList",
|
|
1226
1247
|
"package": "core",
|
|
@@ -1236,6 +1257,13 @@
|
|
|
1236
1257
|
"category": "Browser",
|
|
1237
1258
|
"description": "reactive [Screen Wake Lock API](https://developer.mozilla.org/en-US/docs/Web/API/Screen_Wake_Lock_API) provides a way to prevent devices from dimming or locking the screen when an application needs to keep running"
|
|
1238
1259
|
},
|
|
1260
|
+
{
|
|
1261
|
+
"name": "useWebNotification",
|
|
1262
|
+
"package": "core",
|
|
1263
|
+
"docs": "https://vueuse.org/core/useWebNotification/",
|
|
1264
|
+
"category": "Browser",
|
|
1265
|
+
"description": "reactive [Notification](https://developer.mozilla.org/en-US/docs/Web/API/notification)"
|
|
1266
|
+
},
|
|
1239
1267
|
{
|
|
1240
1268
|
"name": "useWebSocket",
|
|
1241
1269
|
"package": "core",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vueuse/nuxt",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.5.0",
|
|
4
4
|
"description": "VueUse Nuxt Module",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vue",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"module": "./index.mjs",
|
|
35
35
|
"types": "./index.d.ts",
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@vueuse/core": "7.
|
|
37
|
+
"@vueuse/core": "7.5.0",
|
|
38
38
|
"local-pkg": "^0.4.0",
|
|
39
39
|
"vue-demi": "*"
|
|
40
40
|
}
|