2024-12-02 20:00:21 +08:00

19 lines
263 B
Vue

<script lang="ts" setup>
defineProps<{
content: string
}>()
</script>
<template>
<div class="markdown-body" v-html="$mdRender.render(content)"/>
</template>
<style lang="scss">
.markdown-body {
img {
display: block;
margin: 0 auto;
}
}
</style>