FEAT: evilspins v3 :: tracks info in player

This commit is contained in:
valere
2024-10-22 23:36:04 +02:00
parent bf7c68fa35
commit e1ed518ce4
22 changed files with 381 additions and 236 deletions

View File

@@ -0,0 +1,11 @@
<template>
<section>
<div v-for="compilation in store.getAllCompilations" class="text-white">
<compilationObject :data="compilation" template="full" />
</div>
</section>
</template>
<script setup lang="ts">
const store = useDataStore()
</script>