feat: 将收藏与历史合并

This commit is contained in:
alger
2024-12-15 15:12:45 +08:00
parent 3b1470f28f
commit 3d2f6a2330
5 changed files with 184 additions and 81 deletions
+13
View File
@@ -0,0 +1,13 @@
<template>
<div class="flex gap-4 h-full p-4">
<favorite class="flex-1 bg-[#0d0d0d] border border-[#374151] rounded-2xl overflow-hidden" />
<history class="flex-1 bg-[#0d0d0d] border border-[#374151] rounded-2xl overflow-hidden" />
</div>
</template>
<script setup lang="ts">
import Favorite from '@/views/favorite/index.vue';
import History from '@/views/history/index.vue';
</script>
<style scoped></style>