yunohost-admin/app/src/components/globals/formItems/MarkdownItem.vue
2024-03-02 03:09:15 +01:00

14 lines
240 B
Vue

<template>
<VueShowdown :markdown="label" flavor="github" />
</template>
<script>
export default {
name: 'MarkdownItem',
props: {
id: { type: String, default: null },
label: { type: String, default: null },
},
}
</script>