13 lines
239 B
Vue
Raw Normal View History

2024-02-16 12:06:15 +01:00
<template>
<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>