diff --git a/budgit.client/src/AppState.js b/budgit.client/src/AppState.js index 0f1dd3d..48c126e 100644 --- a/budgit.client/src/AppState.js +++ b/budgit.client/src/AppState.js @@ -4,5 +4,6 @@ import { reactive } from 'vue' export const AppState = reactive({ user: {}, account: {}, - transactions: [] + transactions: [], + categories: [] }) diff --git a/budgit.client/src/components/AddTransaction.vue b/budgit.client/src/components/AddTransaction.vue new file mode 100644 index 0000000..c2ad728 --- /dev/null +++ b/budgit.client/src/components/AddTransaction.vue @@ -0,0 +1,113 @@ + + + + + + + + + + \ No newline at end of file diff --git a/budgit.client/src/components/Category.vue b/budgit.client/src/components/Category.vue new file mode 100644 index 0000000..1ae65f8 --- /dev/null +++ b/budgit.client/src/components/Category.vue @@ -0,0 +1,28 @@ + + + + + + + \ No newline at end of file diff --git a/budgit.client/src/components/Transaction.vue b/budgit.client/src/components/Transaction.vue index 6fa46f4..c2ad728 100644 --- a/budgit.client/src/components/Transaction.vue +++ b/budgit.client/src/components/Transaction.vue @@ -1,28 +1,35 @@ @@ -31,6 +38,8 @@ + + \ No newline at end of file + + + \ No newline at end of file diff --git a/budgit.client/src/pages/TransactionsPage.vue b/budgit.client/src/pages/TransactionsPage.vue index 702c77d..35833e3 100644 --- a/budgit.client/src/pages/TransactionsPage.vue +++ b/budgit.client/src/pages/TransactionsPage.vue @@ -2,7 +2,7 @@

Transactions Container

- +
@@ -11,6 +11,7 @@