13 lines
No EOL
242 B
Vue
13 lines
No EOL
242 B
Vue
<script setup>
|
|
import '~/assets/style/markdown.scss';
|
|
|
|
// External inputs (reactive)
|
|
const input = defineProps({
|
|
input: Object
|
|
});
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<ContentRendererMarkdown :value="input.input" class="md-contents" />
|
|
</template> |