diff --git a/packages/contributors.json b/packages/contributors.json index 751ba66e059..7de01ed0edc 100644 --- a/packages/contributors.json +++ b/packages/contributors.json @@ -9,9 +9,9 @@ "cawa-93", "patak-dev", "lstoeferle", + "michealroberts", "harmyderoman", "Shinigami92", - "michealroberts", "sxzz", "wtykirby", "YunYouJun", diff --git a/packages/core/useFetch/index.md b/packages/core/useFetch/index.md index 60eb4b34845..e6b19a5ce8b 100644 --- a/packages/core/useFetch/index.md +++ b/packages/core/useFetch/index.md @@ -7,6 +7,10 @@ category: Network Reactive [Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) provides the ability to abort requests, intercept requests before they are fired, automatically refetch requests when the url changes, and create your own `useFetch` with predefined options. +::: tip +When using with Nuxt 3, this functions will **NOT** be auto imported in favor of Nuxt's built-in [`useFetch()`](https://v3.nuxtjs.org/api/composables/use-fetch). Use explicit import if you want to use the function from VueUse. +::: + ## Usage ### Basic Usage diff --git a/packages/core/useStorage/index.md b/packages/core/useStorage/index.md index d7124b164a9..da9e1103019 100644 --- a/packages/core/useStorage/index.md +++ b/packages/core/useStorage/index.md @@ -6,6 +6,10 @@ category: State Reactive [LocalStorage](https://developer.mozilla.org/en-US/docs/Web/API/Window/localStorage)/[SessionStorage](https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorage) +::: tip +When using with Nuxt 3, this functions will **NOT** be auto imported in favor of Nitro's built-in [`useStorage()`](https://nitro.unjs.io/guide/storage.html). Use explicit import if you want to use the function from VueUse. +::: + ## Usage ```js diff --git a/packages/core/useTitle/index.md b/packages/core/useTitle/index.md index 27f83fd0cc6..98404a6e7cf 100644 --- a/packages/core/useTitle/index.md +++ b/packages/core/useTitle/index.md @@ -6,6 +6,10 @@ category: Browser Reactive document title. +::: tip +When using with Nuxt 3, this functions will **NOT** be auto imported in favor of Nuxt's built-in `useTitle()`. Use explicit import if you want to use the function from VueUse. +::: + ## Usage ```js diff --git a/packages/integrations/useCookies/index.md b/packages/integrations/useCookies/index.md index 4b50d3bf67f..7d8527ff0f3 100644 --- a/packages/integrations/useCookies/index.md +++ b/packages/integrations/useCookies/index.md @@ -4,7 +4,11 @@ category: '@Integrations' # useCookies -wrapper for [`universal-cookie`](https://www.npmjs.com/package/universal-cookie). +Wrapper for [`universal-cookie`](https://www.npmjs.com/package/universal-cookie). + +::: tip +When using with Nuxt 3, this functions will **NOT** be auto imported in favor of Nuxt's built-in [`useCookie()`](https://v3.nuxtjs.org/api/composables/use-cookie). Use explicit import if you want to use the function from VueUse. +::: ## Install