add cards & tracks
All checks were successful
Deploy App / build (push) Successful in 1m13s
Deploy App / deploy (push) Successful in 15s

This commit is contained in:
valere
2025-10-02 00:38:54 +02:00
parent 8c1290beae
commit 43b1a11027
11 changed files with 474 additions and 43 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div class="mt-8 p-8 w-96">
<div class="mt-8 p-8 w-96 flex flex-wrap">
<MoleculeCard v-for="track in dataStore.getTracksByCompilationId(compilation.id)" :key="track.id" :track="track" />
</div>
</template>
@@ -13,5 +13,4 @@ const props = defineProps<{
}>()
const dataStore = useDataStore()
</script>