Skip to content
This repository has been archived by the owner on Apr 6, 2023. It is now read-only.

Commit

Permalink
remove edge banners
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Aug 9, 2022
1 parent 5c15c76 commit fc4ffd5
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 19 deletions.
3 changes: 0 additions & 3 deletions docs/content/2.guide/2.features/4.head-management.md
Expand Up @@ -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 `<body>` tag.

For example:
Expand Down
8 changes: 0 additions & 8 deletions docs/content/2.guide/2.features/7.error-handling.md
Expand Up @@ -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]
<script setup>
const route = useRoute()
Expand All @@ -109,10 +105,6 @@ if (!data.value) {

### `showError`

::StabilityEdge{title="showError"}
In the current version, use `throwError` or `throw createError` instead.
::

* `function showError (err: string | Error | { statusCode, statusMessage }): Error`

You can call this function at any point on client-side, or (on server side) directly within middleware, plugins or `setup()` functions. It will trigger a full-screen error page which you can clear with `clearError`.
Expand Down
4 changes: 0 additions & 4 deletions docs/content/2.guide/3.directory-structure/4.components.md
Expand Up @@ -80,10 +80,6 @@ Alternatively, though not recommended, you can register all your components glob
})
```

::StabilityEdge{title="Automatic global components"}
In the current version, components in `~/components/global` are not yet auto-registered.
::

You can also selectively register some components globally by placing them in a `~/components/global` directory.

::alert{type=info}
Expand Down
4 changes: 0 additions & 4 deletions docs/content/3.api/3.utils/create-error.md
Expand Up @@ -15,10 +15,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]
<script setup>
const route = useRoute()
Expand Down

0 comments on commit fc4ffd5

Please sign in to comment.