feat:针对移动端优化

This commit is contained in:
alger
2025-12-19 00:23:24 +08:00
parent 70f1044dd9
commit 8e1259d2aa
18 changed files with 2299 additions and 189 deletions
@@ -1,6 +1,6 @@
<template>
<div class="flex gap-4 h-full pb-4">
<favorite class="flex-item" />
<favorite class="flex-item" v-if="!isMobile" />
<history-list class="flex-item" />
</div>
</template>
@@ -10,6 +10,7 @@ defineOptions({
name: 'History'
});
import { isMobile } from '@/utils';
import Favorite from '@/views/favorite/index.vue';
import HistoryList from '@/views/history/index.vue';
</script>