mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
10 lines
144 B
Vue
10 lines
144 B
Vue
<script setup lang="ts">
|
|
defineProps<{
|
|
label: string
|
|
id?: string
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<VueShowdown :markdown="label" />
|
|
</template>
|