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