From 5ea0474225c3591cd743f51a72aa2cd7597ec0e4 Mon Sep 17 00:00:00 2001 From: pooya parsa Date: Thu, 11 Aug 2022 12:40:11 +0200 Subject: [PATCH] v3.0.0-rc.7 (#6375) --- .../2.guide/2.features/4.head-management.md | 3 - .../2.guide/2.features/7.error-handling.md | 8 --- .../3.directory-structure/4.components.md | 4 -- docs/content/3.api/3.utils/create-error.md | 4 -- docs/content/index.md | 2 +- lerna.json | 2 +- package.json | 4 +- packages/kit/package.json | 6 +- packages/nuxi/package.json | 8 +-- packages/nuxt/package.json | 14 ++-- packages/nuxt/src/dirs.ts | 2 +- packages/schema/package.json | 2 +- packages/test-utils/package.json | 6 +- packages/vite/package.json | 8 +-- packages/vite/src/dirs.ts | 2 +- packages/webpack/package.json | 8 +-- scripts/bump-rc.sh | 2 +- yarn.lock | 72 +++++++++++-------- 18 files changed, 75 insertions(+), 82 deletions(-) diff --git a/docs/content/2.guide/2.features/4.head-management.md b/docs/content/2.guide/2.features/4.head-management.md index 7ffa13bd9a8..69317ed70bf 100644 --- a/docs/content/2.guide/2.features/4.head-management.md +++ b/docs/content/2.guide/2.features/4.head-management.md @@ -51,9 +51,6 @@ Now, if you set the title to `My Page` with `useHead` on another page of your si ## Body Meta Tags -::StabilityEdge{title="Body Meta Tags"} -:: - You can use the `body: true` option on the `link` and `script` meta tags to append them to the end of the `` tag. For example: diff --git a/docs/content/2.guide/2.features/7.error-handling.md b/docs/content/2.guide/2.features/7.error-handling.md index 144b663d632..c514237ffde 100644 --- a/docs/content/2.guide/2.features/7.error-handling.md +++ b/docs/content/2.guide/2.features/7.error-handling.md @@ -93,10 +93,6 @@ If you throw an error created with `createError`: ### Example -::StabilityEdge{title="Auto import of createError"} -In the current version, add `import { createError } from 'h3'` in order to use `createError`. -:: - ```vue [pages/movies/[slug].vue]