mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-07 03:35:35 +00:00
28 lines
375 B
Vue
28 lines
375 B
Vue
<template>
|
|
<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> |