Files
evilspins/app/components/organism/compilationPage.vue
valere 9438394db8
All checks were successful
Deploy App / deploy (push) Successful in 30s
animations + cards
2025-09-30 01:10:12 +02:00

17 lines
407 B
Vue

<template>
<div class="mt-8 p-8 w-96">
<MoleculeCard v-for="track in dataStore.getTracksByCompilationId(compilation.id)" :key="track.id" :track="track" />
</div>
</template>
<script setup lang="ts">
import { useDataStore } from '~/store/data'
import type { Compilation } from '~~/types/types'
const props = defineProps<{
compilation: Compilation
}>()
const dataStore = useDataStore()
</script>