Defined the overarching data structure for the accounts and transactions

This commit is contained in:
Josh Creek
2019-04-13 15:37:45 +01:00
parent 02a7d97571
commit 26d71fd3b7
+21
View File
@@ -11,6 +11,27 @@ export default {
name: 'app',
components: {
Header
},
data: function() {
return {
accounts: [
{
"AccountName": "",
"Bank": "",
"Transactions": [
{
"Date": "",
"TransactionTypeDescription": "",
"Description": "",
"OutgoingPayment": true,
"Amount": 0,
"Balance": 0,
"Tags": []
}
]
}
]
}
}
}
</script>