diff --git a/web/src/pages/Account.vue b/web/src/pages/Account.vue index 1c9b668..862f1b7 100644 --- a/web/src/pages/Account.vue +++ b/web/src/pages/Account.vue @@ -2,44 +2,89 @@ import { defineComponent } from "vue" export default defineComponent({ - props: ["budgetid", "accountid"] + data() { + return { + TransactionDate: new Date().toISOString().substring(0, 10), + Payee: "", + } + }, + props: ["budgetid", "accountid"], + methods: { + saveTransaction(e : MouseEvent) { + e.preventDefault(); + } + } }) \ No newline at end of file