2025-01-04 02:47:38 -08:00
|
|
|
<script setup>
|
2025-01-03 21:50:12 -08:00
|
|
|
import '~/assets/style/markdown.scss';
|
|
|
|
|
|
|
|
// External inputs (reactive)
|
|
|
|
const input = defineProps({
|
2025-01-04 02:47:38 -08:00
|
|
|
input: Object
|
2025-01-03 21:50:12 -08:00
|
|
|
});
|
2024-12-22 12:22:47 -08:00
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2025-01-04 02:47:38 -08:00
|
|
|
<ContentRendererMarkdown :value="input.input" class="md-contents" />
|
2025-01-03 21:50:12 -08:00
|
|
|
</template>
|