From 9a8f70d87be16c03023447e6755c653f2140119c Mon Sep 17 00:00:00 2001 From: Hide_D Date: Sun, 26 Mar 2023 00:58:32 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EA=B0=90=EC=B0=B0=EB=B6=80=20=EC=95=88?= =?UTF-8?q?=EB=B3=B4=EC=9D=B4=EB=8A=94=20=EB=B2=84=EA=B7=B8=20=EC=88=98?= =?UTF-8?q?=EC=A0=95=20-=20query=EB=A1=9C=20=EC=98=AE=EA=B2=A8=EC=84=9C=20?= =?UTF-8?q?=EC=83=9D=EA=B8=B0=EB=8A=94=20=EB=AC=B8=EC=A0=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hwe/ts/PageBattleCenter.vue | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hwe/ts/PageBattleCenter.vue b/hwe/ts/PageBattleCenter.vue index 6c272637..8e462e67 100644 --- a/hwe/ts/PageBattleCenter.vue +++ b/hwe/ts/PageBattleCenter.vue @@ -117,7 +117,10 @@ const orderedInvGeneralKeyIndex = ref(new Map()); const orderBy = ref("turntime"); const targetGeneral = ref(); -const targetGeneralID = toRef(props, "generalID"); +const targetGeneralID = ref(props.generalID); +watch(()=>props.generalID, (generalID)=>{ + targetGeneralID.value = generalID; +}) type GeneralLogs = { [key in GeneralLogType]: Map;