jointrashposs/components/content/MfmPreview.vue

14 lines
274 B
Vue
Raw Normal View History

2023-07-12 05:57:32 +02:00
<template>
<div class="rounded-lg border border-slate-200 dark:border-slate-800 p-6 mfm-root mb-4">
<MkMfm :text="text" />
</div>
</template>
<script setup lang="ts">
import MkMfm from '@/components/mk/Mfm';
defineProps<{
text: string;
}>();
</script>