2023-02-28 08:29:30 +00:00
|
|
|
<template>
|
2023-03-04 13:43:35 +00:00
|
|
|
<component :is="headerTag" class="doc-section-label">
|
2023-02-28 08:29:30 +00:00
|
|
|
{{ $attrs.label }}
|
2024-04-24 22:43:32 +00:00
|
|
|
<Tag v-if="$attrs.badge" :value="$attrs.badge?.value ?? $attrs.badge" class="doc-section-label-badge" :severity="$attrs.badge?.severity || 'info'"></Tag>
|
2023-03-02 14:47:18 +00:00
|
|
|
<NuxtLink :id="$attrs.id" :to="`${checkRouteName}/#${$attrs.id}`" target="_self" @click="onClick"> # </NuxtLink>
|
2023-02-28 08:29:30 +00:00
|
|
|
</component>
|
|
|
|
<div v-if="$attrs" class="doc-section-description">
|
|
|
|
<slot></slot>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
inheritAttrs: false,
|
|
|
|
methods: {
|
|
|
|
onClick(event) {
|
|
|
|
const parentElement = event.currentTarget.parentElement;
|
|
|
|
const hash = window.location.hash.substring(1);
|
|
|
|
|
|
|
|
hash === this.$attrs.id && event.preventDefault();
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
parentElement.scrollIntoView({ block: 'start' });
|
|
|
|
}, 0);
|
|
|
|
}
|
2023-03-02 14:47:18 +00:00
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
checkRouteName() {
|
|
|
|
const path = this.$router.currentRoute.value.path;
|
|
|
|
|
|
|
|
if (path.lastIndexOf('/') === path.length - 1) {
|
|
|
|
return path.slice(0, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return path;
|
2023-03-04 13:43:35 +00:00
|
|
|
},
|
|
|
|
headerTag() {
|
|
|
|
if (this.$attrs.level === 3) {
|
|
|
|
return 'h4';
|
|
|
|
} else if (this.$attrs.level === 2) {
|
|
|
|
return 'h3';
|
|
|
|
}
|
|
|
|
|
|
|
|
return 'h2';
|
2023-03-02 14:47:18 +00:00
|
|
|
}
|
2023-02-28 08:29:30 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|