diff --git a/budgit.client/src/components/Transaction.vue b/budgit.client/src/components/Transaction.vue index c2ad728..327692f 100644 --- a/budgit.client/src/components/Transaction.vue +++ b/budgit.client/src/components/Transaction.vue @@ -1,5 +1,5 @@ @@ -72,6 +77,10 @@ export default { } catch (error) { console.log(error) } + }, + async remove() { + // TODO need to write CRUD method for this + // probably good to write an Are-you-sure Modal too... } } } diff --git a/budgit.client/src/pages/TransactionsPage.vue b/budgit.client/src/pages/TransactionsPage.vue index 35833e3..3c96416 100644 --- a/budgit.client/src/pages/TransactionsPage.vue +++ b/budgit.client/src/pages/TransactionsPage.vue @@ -1,7 +1,6 @@