diff --git a/budgit.client/src/AppState.js b/budgit.client/src/AppState.js index 0b5a547..0f1dd3d 100644 --- a/budgit.client/src/AppState.js +++ b/budgit.client/src/AppState.js @@ -3,5 +3,6 @@ import { reactive } from 'vue' // NOTE AppState is a reactive object to contain app level data export const AppState = reactive({ user: {}, - account: {} + account: {}, + transactions: [] }) diff --git a/budgit.client/src/components/Navbar.vue b/budgit.client/src/components/Navbar.vue index e1778ab..5cd9aed 100644 --- a/budgit.client/src/components/Navbar.vue +++ b/budgit.client/src/components/Navbar.vue @@ -1,18 +1,20 @@