ffplayout/frontend/app.vue

13 lines
239 B
Vue
Raw Permalink Normal View History

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