feat: 优化收藏和历史列表组件,添加加载状态管理和动画效果

This commit is contained in:
alger
2025-05-24 19:23:38 +08:00
parent e5adb8aa72
commit 5070a085e9
3 changed files with 45 additions and 19 deletions
@@ -1,13 +1,17 @@
<template>
<div class="flex gap-4 h-full pb-4">
<favorite class="flex-item" />
<history class="flex-item" />
<history-list class="flex-item" />
</div>
</template>
<script setup lang="ts">
defineOptions({
name: 'History'
});
import Favorite from '@/views/favorite/index.vue';
import History from '@/views/history/index.vue';
import HistoryList from '@/views/history/index.vue';
</script>
<style scoped>