add markdown support
This commit is contained in:
parent
caa61ca385
commit
de1701ad99
13
components/markdown/Section.vue
Normal file
13
components/markdown/Section.vue
Normal file
@ -0,0 +1,13 @@
|
||||
<script lang="ts" setup>
|
||||
defineProps<{
|
||||
content: string
|
||||
}>()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="render" v-html="$mdRender.render(content)"></div>
|
||||
</template>
|
||||
|
||||
|
||||
<style lang="scss">
|
||||
</style>
|
Loading…
x
Reference in New Issue
Block a user