Skip to content

Commit d03d2e9

Browse files
committed
docs(content): update
1 parent 7cd8191 commit d03d2e9

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

docs/src/components/content-container.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
Optionally, the composable [`useContentContainer`](../composables/use-content-container) can also be used as a wrapper.
77
:::
88

9-
The `ContentContainer` is used to map the depth of the page structure.
9+
The `ContentContainer` is used to map the depth of the element structure.
1010

11-
With each nested `ContentContainer` the page structure becomes one level deeper (`level`).
11+
With each nested `ContentContainer` the element structure becomes one level deeper (`level`).
1212

13-
The appropriate HTML element for the page structure is determined based on the `level`.
13+
The appropriate HTML element for the page structure is determined based on the `level`. (e.g. `main`, `section`, `article`)
1414

1515
## Properties
1616

docs/src/composables/use-content-container.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@
66
Optionally, the component [`<ContentContainer>`](../components/content-container) can also be used as a wrapper.
77
:::
88

9-
The composable `useContentContainer` is used to map the depth of the page structure.
9+
The composable `useContentContainer()` is used to map the depth of the page structure.
1010

11-
With each call of `useContentContainer()` in nested components, the level of the page structure is increased by one level (`level`).
11+
With each call of `useContentContainer()` in nested components, the `level` of the element structure is increased by one `level`.
1212

1313
The appropriate HTML element for the page structure is determined based on the `level`. (e.g. `main`, `section`, `article`)
1414

15-
Translated with DeepL.com (free version)
16-
1715
```vue
1816
<template>
1917
<component v-if="currentTag" :is="currentTag">

0 commit comments

Comments
 (0)