mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-05 13:03:02 +00:00
add a HeaderContentBottom layout
- rewrite album page to use the above layout
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user