feat: markdown组件(开发中)

This commit is contained in:
dap
2024-10-14 21:15:47 +08:00
parent 86a2539d27
commit 72ae9edd2c
7 changed files with 205 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
<script setup lang="ts">
import { ref } from 'vue';
import { MarkdownEditor, Page } from '@vben/common-ui';
import changelog from '../../../../../../CHANGELOG.md?raw';
const content = ref(changelog);
</script>
<template>
<Page :auto-content-height="true">
<MarkdownEditor id="changelog" v-model:value="content" height="100%" />
</Page>
</template>