yunohost-admin/app/src/components/globals/formItems/MarkdownItem.vue

10 lines
144 B
Vue

<script setup lang="ts">
defineProps<{
label: string
id?: string
}>()
</script>
<template>
<VueShowdown :markdown="label" />
</template>