You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
516 B
35 lines
516 B
<template>
|
|
<div class="markdown-body">
|
|
<MarkdownRender :content="content" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import MarkdownRender from '@/components/MarkdownRender.vue';
|
|
defineProps<{
|
|
content: string
|
|
}>();
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.markdown-body {
|
|
font-family: 'Georgia', serif;
|
|
line-height: 1.6;
|
|
|
|
h1 {
|
|
font-size: 24px;
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
p {
|
|
margin: 10px 0;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
margin: 10px 0;
|
|
border-radius: 6px;
|
|
}
|
|
}
|
|
</style>
|