add folder list

This commit is contained in:
geoffrey45
2021-11-20 07:41:29 +03:00
parent 12c0669c90
commit cf8ba6554b
10 changed files with 307 additions and 104 deletions
+22 -5
View File
@@ -1,19 +1,23 @@
<template>
<div>
<SongList/>
<!-- <hr> -->
<FolderList/>
<div id="f-view-parent" class="rounded">
<SearchBox />
<div id="scrollable">
<SongList />
<FolderList />
</div>
</div>
</template>
<script>
import SongList from "@/components/FolderView/SongList.vue";
import FolderList from "@/components/FolderView/FolderList.vue";
import SearchBox from "@/components/FolderView/SearchBox.vue";
export default {
components: {
SongList,
FolderList
FolderList,
SearchBox,
},
setup() {
return {
@@ -24,5 +28,18 @@ export default {
</script>
<style>
#f-view-parent {
height: 100%;
background-color: rgba(0, 0, 0, 0.24);
padding-left: 20px;
padding-right: 20px;
padding-top: 1em;
overflow: hidden;
/* border: solid; */
}
#scrollable {
overflow: scroll;
}
</style>