You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
350 B
Vue
18 lines
350 B
Vue
<script setup lang="ts">
|
|
interface Props {
|
|
content: string
|
|
}
|
|
|
|
const props = defineProps<Props>()
|
|
const parsedMarkdown = stringToMarkdown(props.content)
|
|
</script>
|
|
|
|
<template>
|
|
<div class="h-content bg-secondary overflow-y-scroll p-4">
|
|
<div
|
|
class="prose prose-invert overflow-scroll"
|
|
v-html="parsedMarkdown">
|
|
</div>
|
|
</div>
|
|
</template>
|