Add transaction lists

This commit is contained in:
James Cole
2022-06-09 05:45:45 +02:00
parent 86d4549874
commit 313676e3be
2 changed files with 36 additions and 1 deletions

View File

@@ -40,7 +40,7 @@
</div>
<div class="row q-mb-sm">
<div class="col">
Account transaction list.
<TransactionLists />
</div>
</div>
<div class="row q-mb-sm">
@@ -89,10 +89,12 @@
<script>
import {defineAsyncComponent} from "vue";
import TransactionLists from "../../components/dashboard/TransactionLists";
export default {
name: "Dashboard",
components: {
TransactionLists,
AccountChart: defineAsyncComponent(() => import('../../components/dashboard/AccountChart.vue')),
NetWorthInsightBox: defineAsyncComponent(() => import('../../components/dashboard/NetWorthInsightBox.vue')),
BillInsightBox: defineAsyncComponent(() => import('../../components/dashboard/BillInsightBox.vue')),