feat: 에러 추가 중

This commit is contained in:
“hyeonggkim”
2025-10-27 21:18:12 +09:00
parent 1f72069418
commit 470d8a62c7
9 changed files with 494 additions and 126 deletions

9
app/pages/error.vue Normal file
View File

@@ -0,0 +1,9 @@
<template>
<NuxtLayout>
<div>
<h1>Dang</h1>
<p>It looks like something broke.</p>
<p>Sorry about that.</p>
</div>
</NuxtLayout>
</template>

View File

@@ -7,6 +7,8 @@ const { pageData } = storeToRefs(pageDataStore)
const currentLayout = computed(() => getLayoutType(pageData.value))
console.log("🚀 ~ currentLayout:", currentLayout)
definePageMeta({
layout: false, // 동적 레이아웃을 위해 기본 레이아웃 비활성화
})