14 lines
161 B
Vue
14 lines
161 B
Vue
|
<script setup lang="ts">
|
||
|
useHead({
|
||
|
bodyAttrs: {
|
||
|
class: 'bg-black'
|
||
|
}
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<NuxtLayout>
|
||
|
<NuxtPage />
|
||
|
</NuxtLayout>
|
||
|
</template>
|