mirror of
https://github.com/algerkong/AlgerMusicPlayer.git
synced 2026-05-17 10:27:30 +08:00
18 lines
391 B
Vue
18 lines
391 B
Vue
<template>
|
|
<div class="flex gap-4 h-full pb-4">
|
|
<favorite class="flex-item" />
|
|
<history class="flex-item" />
|
|
</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>
|