19 lines
263 B
Vue
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> |