From c7de65707be4737ab04c93f1b9f96ca5e5b8df56 Mon Sep 17 00:00:00 2001 From: Hide_D Date: Thu, 9 Mar 2023 02:01:54 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20PageFront=EC=97=90=EC=84=9C=20=EB=AA=A8?= =?UTF-8?q?=EB=B0=94=EC=9D=BC=20=EB=AA=A8=EB=93=9C=20=EA=B0=B1=EC=8B=A0=20?= =?UTF-8?q?=EB=B2=84=ED=8A=BC=EC=9D=B4=20=EC=9D=91=EB=8B=B5=ED=95=98?= =?UTF-8?q?=EC=A7=80=20=EC=95=8A=EC=95=98=EC=9D=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/ts/PageFront.vue | 3 ++- hwe/ts/components/GameBottomBar.vue | 6 +++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/hwe/ts/PageFront.vue b/hwe/ts/PageFront.vue index 690ea564..13c1b782 100644 --- a/hwe/ts/PageFront.vue +++ b/hwe/ts/PageFront.vue @@ -94,7 +94,7 @@
- +
@@ -160,6 +160,7 @@ id="mobileBottomBar" :frontInfo="frontInfo" :globalMenu="globalMenu" + @refresh="tryRefresh" />
diff --git a/hwe/ts/components/GameBottomBar.vue b/hwe/ts/components/GameBottomBar.vue index d9fe0c15..3e8f084c 100644 --- a/hwe/ts/components/GameBottomBar.vue +++ b/hwe/ts/components/GameBottomBar.vue @@ -100,7 +100,7 @@ @@ -121,6 +121,10 @@ const props = defineProps<{ globalMenu: GetMenuResponse["menu"]; }>(); +const emit = defineEmits<{ + (event: "refresh"): void; +}>(); + const { frontInfo, globalMenu } = toRefs(props); const globalInfo = ref(frontInfo.value.global);