2024-02-16 12:06:15 +01:00
|
|
|
<template>
|
2024-04-17 09:55:57 +02:00
|
|
|
<div>
|
|
|
|
<NuxtLayout>
|
|
|
|
<NuxtPage />
|
|
|
|
</NuxtLayout>
|
|
|
|
</div>
|
2024-02-16 12:06:15 +01:00
|
|
|
</template>
|
2024-08-22 19:56:05 +02:00
|
|
|
<script setup lang="ts">
|
|
|
|
const configStore = useConfig()
|
|
|
|
|
|
|
|
await useAsyncData('init', () => configStore.configInit())
|
|
|
|
</script>
|