mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
30 lines
456 B
Vue
30 lines
456 B
Vue
<template>
|
|
<Header />
|
|
<div class="p-bg rounded">
|
|
<SongList />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Header from "@/components/PlaylistView/Header.vue";
|
|
import SongList from "@/components/FolderView/SongList.vue";
|
|
|
|
export default {
|
|
components: {
|
|
Header,
|
|
SongList,
|
|
},
|
|
setup() {
|
|
return {};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.p-bg {
|
|
background: $card-dark;
|
|
padding: 20px;
|
|
height: calc(100% - 16em);
|
|
padding: 0;
|
|
}
|
|
</style> |