Fix missing computed calls in Account
This commit is contained in:
parent
5bbd096fc8
commit
e7a085273b
@ -33,8 +33,8 @@ function saveTransaction(e: MouseEvent) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const accountStore = useAccountStore();
|
const accountStore = useAccountStore();
|
||||||
const CurrentAccount = accountStore.CurrentAccount;
|
const CurrentAccount = computed(() => accountStore.CurrentAccount);
|
||||||
const TransactionsList = accountStore.TransactionsList;
|
const TransactionsList = computed(() => accountStore.TransactionsList);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user