Update prose components for content

This commit is contained in:
2023-11-06 23:57:17 +01:00
parent 63823d1f87
commit ba22ac16e2
4 changed files with 56 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
<script setup lang="ts">
import { computed, useRuntimeConfig } from '#imports'
const props = defineProps<{ id?: string }>()
const { headings } = useRuntimeConfig().public.mdc
const generate = computed(() => props.id && headings?.anchorLinks?.h2)
</script>
<template>
<h2 :id="id">
<a
v-if="id && generate"
:href="`#${id}`"
class="pl-6 border-l border-zinc-200 dark:border-zinc-700/70 duration-300"
>
<slot />
</a>
<slot v-else />
</h2>
</template>