update: 更新日志的加载效果

This commit is contained in:
dap 2025-04-03 17:59:31 +08:00
parent bac71a30f0
commit fe53c33821

View File

@ -3,7 +3,7 @@ import { ref } from 'vue';
import { MarkdownPreviewer, Page } from '@vben/common-ui';
import { Skeleton } from 'ant-design-vue';
import { Spin } from 'ant-design-vue';
import changelog from '../../../../../../CHANGELOG.md?raw';
@ -14,11 +14,13 @@ const loading = ref(true);
<template>
<Page :auto-content-height="true">
<Skeleton v-show="loading" active />
<MarkdownPreviewer
v-model:value="content"
height="100%"
@mounted="loading = false"
/>
<Spin :spinning="loading" tip="加载markdown中...">
<MarkdownPreviewer
v-model:value="content"
height="100%"
class="min-h-[50vh]"
@mounted="loading = false"
/>
</Spin>
</Page>
</template>