Expand code.

This commit is contained in:
James Cole
2022-06-25 14:23:52 +02:00
parent e0c9d3627e
commit f52144d8d9
19 changed files with 904 additions and 20 deletions

View File

@@ -89,12 +89,11 @@
<script>
import {defineAsyncComponent} from "vue";
import TransactionLists from "../../components/dashboard/TransactionLists";
export default {
name: "Dashboard",
components: {
TransactionLists,
TransactionLists: defineAsyncComponent(() => import("../../components/dashboard/TransactionLists.vue")),
AccountChart: defineAsyncComponent(() => import('../../components/dashboard/AccountChart.vue')),
NetWorthInsightBox: defineAsyncComponent(() => import('../../components/dashboard/NetWorthInsightBox.vue')),
BillInsightBox: defineAsyncComponent(() => import('../../components/dashboard/BillInsightBox.vue')),