initial buid of folder explorer view

This commit is contained in:
geoffrey45
2021-11-18 09:11:53 +03:00
parent 90ecbe1a04
commit 12c0669c90
8 changed files with 183 additions and 15 deletions
+25 -2
View File
@@ -1,5 +1,28 @@
<template>
<div class="about">
<h1>This is a folder view</h1>
<div>
<SongList/>
<!-- <hr> -->
<FolderList/>
</div>
</template>
<script>
import SongList from "@/components/FolderView/SongList.vue";
import FolderList from "@/components/FolderView/FolderList.vue";
export default {
components: {
SongList,
FolderList
},
setup() {
return {
//
};
},
};
</script>
<style>
</style>