@@ -18,13 +18,6 @@ The appropriate HTML element for the page structure is determined based on the `
1818
1919## Properties
2020
21- ### abstract
22-
23- - Type: ` Boolean `
24- - Default: ` false `
25-
26- If set, the heading is rendered as an abstract heading. (e.g. ` <slot /> ` )
27-
2821### tag
2922
3023- Type: ` String `
@@ -35,7 +28,7 @@ Tag for the element.
3528### rootTags
3629
3730- Type: ` Array `
38- - Default: ` inject('rootTags ', ['main']) `
31+ - Default: ` inject('semanticRelease_rootTags ', ['main']) `
3932
4033Available tags for the root structure.
4134
@@ -44,7 +37,7 @@ Available tags for the root structure.
4437### contentTags
4538
4639- Type: ` Array `
47- - Default: ` inject('contentTags ', ['article', 'section']) `
40+ - Default: ` inject('semanticRelease_contentTags ', ['article', 'section']) `
4841
4942Available tags for the content structure.
5043
@@ -57,6 +50,13 @@ Available tags for the content structure.
5750
5851Can be used to overwrite the level.
5952
53+ ### debug
54+
55+ - Type: ` Boolean `
56+ - Default: ` inject('semanticRelease_debug', false) `
57+
58+ If set, the following attributes are set on the element: ` data-current-tag ` , ` data-current-level ` and ` data-parent-level ` .
59+
6060## v-slot
6161
6262### default
@@ -85,8 +85,7 @@ Can be used to overwrite the level.
8585</template>
8686
8787<script setup>
88- import ContentContainer from 'vue-semantic-structure/ContentContainer.vue';
89- import ContentHeadline from 'vue-semantic-structure/ContentHeadline.vue';
88+ import { ContentContainer, ContentHeadline } from 'vue-semantic-structure';
9089</script>
9190```
9291
0 commit comments