ffplayout/frontend/app.vue
2024-09-24 10:49:37 +02:00

13 lines
239 B
Vue

<template>
<div>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</div>
</template>
<script setup lang="ts">
const configStore = useConfig()
await useAsyncData('init', () => configStore.configInit())
</script>