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

10
app.vue
View File

@@ -1,3 +1,11 @@
<template>
<NuxtPage />
<NuxtPage />
</template>
<script setup>
// @todo : laod datas as plugin/middleware (cant load pinia in plugin/middleware) ?
onMounted(async ()=>{
const dataStore = await useDataStore()
await dataStore.loadData()
})
</script>