【解决todo】AI 对话前后,增加加载中页面

This commit is contained in:
cherishsince
2024-05-21 13:56:11 +08:00
parent 8ca3d26cbb
commit 8b0d598d8a
2 changed files with 34 additions and 4 deletions

View File

@ -0,0 +1,15 @@
<!-- message 加载页面 -->
<template>
<div class="message-loading" >
<el-skeleton animated />
</div>
</template>
<script setup lang="ts">
</script>
<style scoped lang="scss">
.message-loading {
padding: 30px 30px;
}
</style>