wujingjing
2024-07-17 99bb2870775c52ec8742ba0937db8f6aa4d46893
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<template>
    <div v-html="md.render(data)"></div>
</template>
 
<script setup lang="ts">
import { md } from '../../libs/markdown';
 
const props = defineProps({
    data: {
        type: String,
    },
});
</script>
<style scoped lang="scss"></style>