server: better structure album tracks endpoint

- client: add now-playing and recommendations to home right-sidebar
This commit is contained in:
geoffrey45
2022-02-06 19:17:26 +03:00
parent 73dec9189e
commit 195a50382a
12 changed files with 298 additions and 318 deletions
+4 -4
View File
@@ -14,7 +14,7 @@
<tbody>
<SongItem
v-for="(song, index) in props.songs"
:key="song.id"
:key="song"
:song="song"
:index="index + 1"
@updateQueue="updateQueue"
@@ -46,8 +46,8 @@ import state from "@/composables/state.js";
const props = defineProps({
songs: {
type: Array,
required: true,
},
required: true
}
});
let route;
@@ -159,4 +159,4 @@ table {
}
}
}
</style>
</style>