docs: updated bridge migration guide (#8471)

Co-authored-by: Daniel Roe <daniel@roe.dev>
This commit is contained in:
Josh Deltener 2022-10-26 04:18:22 -05:00 committed by GitHub
parent 95ae87ba05
commit d228b11c04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 2 deletions

View File

@ -252,8 +252,13 @@ export default defineNuxtConfig({
})
```
This `useHead` composable uses `@vueuse/head` under the hood (rather than `vue-meta`) to manipulate your `<head>`.
Accordingly, we recommend not to use both the native Nuxt 2 `head()` properties as well as `useHead`, as they may conflict.
::alert
This `useHead` composable uses `@vueuse/head` under the hood (rather than `vue-meta`) to manipulate your `<head>`. You need to add `@vueuse/head` to your package.json file for it to work properly.
::
::alert{type=warning}
We recommend not using the native Nuxt 2 `head()` properties in addition to `useHead`, as they may conflict.
::
For more information on how to use this composable, see [the docs](/getting-started/seo-meta).