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

Commit fc4ffd5

Browse files
committed
remove edge banners
1 parent 5c15c76 commit fc4ffd5

File tree

4 files changed

+0
-19
lines changed

4 files changed

+0
-19
lines changed

docs/content/2.guide/2.features/4.head-management.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,6 @@ Now, if you set the title to `My Page` with `useHead` on another page of your si
5151

5252
## Body Meta Tags
5353

54-
::StabilityEdge{title="Body Meta Tags"}
55-
::
56-
5754
You can use the `body: true` option on the `link` and `script` meta tags to append them to the end of the `<body>` tag.
5855

5956
For example:

docs/content/2.guide/2.features/7.error-handling.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,6 @@ If you throw an error created with `createError`:
9393

9494
### Example
9595

96-
::StabilityEdge{title="Auto import of createError"}
97-
In the current version, add `import { createError } from 'h3'` in order to use `createError`.
98-
::
99-
10096
```vue [pages/movies/[slug].vue]
10197
<script setup>
10298
const route = useRoute()
@@ -109,10 +105,6 @@ if (!data.value) {
109105

110106
### `showError`
111107

112-
::StabilityEdge{title="showError"}
113-
In the current version, use `throwError` or `throw createError` instead.
114-
::
115-
116108
* `function showError (err: string | Error | { statusCode, statusMessage }): Error`
117109

118110
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`.

docs/content/2.guide/3.directory-structure/4.components.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,6 @@ Alternatively, though not recommended, you can register all your components glob
8080
})
8181
```
8282

83-
::StabilityEdge{title="Automatic global components"}
84-
In the current version, components in `~/components/global` are not yet auto-registered.
85-
::
86-
8783
You can also selectively register some components globally by placing them in a `~/components/global` directory.
8884

8985
::alert{type=info}

docs/content/3.api/3.utils/create-error.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@ If you throw an error created with `createError`:
1515

1616
### Example
1717

18-
::StabilityEdge{title="Auto import of createError"}
19-
In the current version, add `import { createError } from 'h3'` in order to use `createError`.
20-
::
21-
2218
```vue [pages/movies/[slug].vue]
2319
<script setup>
2420
const route = useRoute()

0 commit comments

Comments
 (0)