Files
AlgerMusicPlayer/src/renderer/views/historyAndFavorite/index.vue
T

18 lines
391 B
Vue
Raw Normal View History

2024-12-15 15:12:45 +08:00
<template>
<div class="flex gap-4 h-full pb-4">
<favorite class="flex-item" />
<history class="flex-item" />
2024-12-15 15:12:45 +08:00
</div>
</template>
<script setup lang="ts">
import Favorite from '@/views/favorite/index.vue';
import History from '@/views/history/index.vue';
</script>
<style scoped>
.flex-item {
@apply flex-1 bg-light-100 dark:bg-dark-100 rounded-2xl overflow-hidden;
}
</style>