implement playing tracks from artist page

This commit is contained in:
geoffrey45
2022-12-07 16:05:16 +03:00
committed by Mungai Njoroge
parent 0b24974a63
commit cc8a8171b8
15 changed files with 176 additions and 40 deletions
+5
View File
@@ -99,6 +99,11 @@ const scrollerItems = computed(() => {
components.push(singles);
}
if (store.appearances.length > 0) {
const appearances = createAbumComponent("Appearances", store.appearances);
components.push(appearances);
}
return components;
});