Update boxes.

This commit is contained in:
James Cole
2022-06-06 17:39:50 +02:00
parent c916fbbee9
commit f13dd18b6f
33 changed files with 479 additions and 87 deletions

View File

@@ -30,7 +30,7 @@
<SpendInsightBox />
</div>
<div class="col">
TODO net worth insight
<NetWorthInsightBox />
</div>
</div>
<div class="row q-mb-sm">
@@ -89,10 +89,12 @@
<script>
import {defineAsyncComponent} from "vue";
import NetWorthInsightBox from "../../components/dashboard/NetWorthInsightBox";
export default {
name: "Dashboard",
components: {
NetWorthInsightBox,
BillInsightBox: defineAsyncComponent(() => import('../../components/dashboard/BillInsightBox.vue')),
SpendInsightBox: defineAsyncComponent(() => import('../../components/dashboard/SpendInsightBox.vue')),
}