mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-19 17:24:26 +08:00
use for-of statements to replace for and for-in
This commit is contained in:
@@ -260,7 +260,7 @@ const selectedAccount = computed<Account>(() => {
|
||||
return account.value;
|
||||
}
|
||||
|
||||
return subAccounts.value[currentAccountIndex.value];
|
||||
return subAccounts.value[currentAccountIndex.value] as Account;
|
||||
});
|
||||
|
||||
const accountAmountTitle = computed<string>(() => {
|
||||
|
||||
Reference in New Issue
Block a user