Files
evilspins/app.vue
2024-10-22 23:36:04 +02:00

12 lines
243 B
Vue

<template>
<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>