Files
nuxtfiber/app/app.vue
Beyhan Oğur 7b2b27a42c first commit
2026-04-26 22:18:17 +03:00

10 lines
216 B
Vue

<template>
<NuxtLayout>
<NuxtPage />
</NuxtLayout>
</template>
<script lang="ts" setup>
// Canvas theme: body.stretched required for full-width layout
useHead({ bodyAttrs: { class: 'stretched' } })
</script>