mirror of
https://github.com/jcreek/bank-statement-analyser.git
synced 2026-07-13 02:43:47 +00:00
Defined the overarching data structure for the accounts and transactions
This commit is contained in:
+21
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user