From d364b52c73f24441c14364a0c84b0b76780f0321 Mon Sep 17 00:00:00 2001 From: ByungCheol Date: Fri, 3 Jul 2026 00:56:14 +0900 Subject: [PATCH] =?UTF-8?q?fix(account):=20wallets=20ref=20TDZ=20=EC=98=A4?= =?UTF-8?q?=EB=A5=98=20=EC=88=98=EC=A0=95=20=E2=80=94=20computed=20?= =?UTF-8?q?=EC=84=A0=EC=96=B8=20=EC=A0=84=20=EC=B4=88=EA=B8=B0=ED=99=94?= =?UTF-8?q?=EB=90=98=EB=8F=84=EB=A1=9D=20=EC=9C=84=EB=A1=9C=20=EC=9D=B4?= =?UTF-8?q?=EB=8F=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- src/views/account/AccountView.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/account/AccountView.vue b/src/views/account/AccountView.vue index f69d0c1..e0adf2d 100644 --- a/src/views/account/AccountView.vue +++ b/src/views/account/AccountView.vue @@ -121,6 +121,8 @@ function onCurrencyChange() { form.rate = null } } +// 계좌/카드 (repayTargetIsCard·repayTargetLoanWallet computed가 참조하므로 먼저 선언) +const wallets = ref([]) const isRepayment = computed(() => form.type === 'REPAYMENT') // 상환 대상이 카드면 연회비 입력 노출(대출은 연회비 없음) const repayTargetIsCard = computed(() => { @@ -278,7 +280,6 @@ async function runOcr(image) { } // 계좌/카드 -const wallets = ref([]) async function loadWallets() { try { wallets.value = await accountApi.wallets()