From b8a722fcb2d159138fd4653c5194b8407586468f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Chyeonggkim=E2=80=9D?= <“hyeonggkim@smilegate.com”> Date: Tue, 2 Dec 2025 09:49:57 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20QA=20=EC=88=98=EC=A0=95=20error=20p?= =?UTF-8?q?age,=20footer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/error.vue | 6 +- layers/components/layouts/Footer.vue | 136 +++++++++++++++++++-------- 2 files changed, 104 insertions(+), 38 deletions(-) diff --git a/app/error.vue b/app/error.vue index 6ae33a5..f92f7f0 100644 --- a/app/error.vue +++ b/app/error.vue @@ -50,7 +50,7 @@ text-color="#FFFFFF" @click="handleError" > - + @@ -93,6 +93,10 @@ const isLoading = ref(true) const errorTitle = ref('') const errorMsg = ref('') +const gameDataStore = useGameDataStore() +const { gameData } = storeToRefs(gameDataStore) +const gameName = computed(() => gameData.value?.game_name) + //error clear 함수 생성 const localePath = useLocalePath() diff --git a/layers/components/layouts/Footer.vue b/layers/components/layouts/Footer.vue index 3172b4d..db98c31 100644 --- a/layers/components/layouts/Footer.vue +++ b/layers/components/layouts/Footer.vue @@ -23,7 +23,7 @@ {{ footerMenuItem.title }} -
  • +