19 lines
263 B
Vue
Raw Normal View History

2024-12-02 17:25:15 +08:00
<script lang="ts" setup>
defineProps<{
content: string
}>()
</script>
<template>
2024-12-02 20:00:21 +08:00
<div class="markdown-body" v-html="$mdRender.render(content)"/>
2024-12-02 17:25:15 +08:00
</template>
<style lang="scss">
2024-12-02 20:00:21 +08:00
.markdown-body {
img {
display: block;
margin: 0 auto;
}
}
2024-12-02 17:25:15 +08:00
</style>