mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
14 lines
240 B
Vue
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>
|