mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
build playlist view
This commit is contained in:
@@ -1,13 +1,18 @@
|
||||
<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 {};
|
||||
@@ -15,5 +20,11 @@ export default {
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
<style lang="scss">
|
||||
.p-bg {
|
||||
background: $card-dark;
|
||||
padding: 20px;
|
||||
height: calc(100% - 16em);
|
||||
padding: 0;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user