docs: update

This commit is contained in:
Benjamin Canac
2024-06-28 11:49:56 +02:00
parent db45bafaed
commit 4ef81991f2
6 changed files with 7 additions and 14 deletions

View File

@@ -27,16 +27,14 @@ const meta: ComputedRef<ComponentMeta> = computed(() => componentMeta.value.meta
<ProseTbody>
<ProseTr v-for="slot in meta.slots" :key="slot.name">
<ProseTd>
<ProseCodeInline>
<ProseCodeInline class="text-primary-500 dark:text-primary-400">
{{ slot.name }}
</ProseCodeInline>
</ProseTd>
<ProseTd>
<HighlightInlineType v-if="slot.type" :type="slot.type" />
<ProseP class="mt-1 mb-0 text-gray-500 dark:text-gray-400">
{{ slot.description }}
</ProseP>
<MDC v-if="slot.description" :value="slot.description" class="text-gray-600 dark:text-gray-300 mt-1" />
</ProseTd>
</ProseTr>
</ProseTbody>