add a HeaderContentBottom layout

- rewrite album page to use the above layout
This commit is contained in:
geoffrey45
2022-07-07 11:55:13 +03:00
parent 1bfa43350c
commit 7a953d366e
8 changed files with 244 additions and 184 deletions
+14
View File
@@ -0,0 +1,14 @@
<template>
<div class="songs rounded">
<SongList :tracks="tracks" :on_album_page="true" />
</div>
</template>
<script setup lang="ts">
import { Track } from "@/interfaces";
import SongList from "@/components/FolderView/SongList.vue";
defineProps<{
tracks: Track[];
}>();
</script>