Convert frontend to Vue #3

Merged
jacob1123 merged 158 commits from vue into master 2022-02-08 22:20:11 +01:00
Showing only changes of commit 3b130b8621 - Show all commits

View File

@ -11,10 +11,10 @@ export default {
<v-container>
<table class="container col-lg-12" id="content">
<tr v-for="transaction in $store.getters.Transactions" class="{{transaction.Date.After now ? 'future' : ''}}">
<td>{{transaction.Date}}</td>
<td>
<td>{{transaction.Date.substring(0, 10)}}</td>
<!--<td>
{{transaction.Account}}
</td>
</td>-->
<td>
{{transaction.Payee}}
</td>
@ -28,7 +28,7 @@ export default {
<a :href="'/budget/'+$store.getters.CurrentBudget.ID+'/transaction/'+transaction.ID">{{transaction.Memo}}</a>
</td>
<td>
{{transaction.Amount}}
{{transaction.Amount.Int / 100}}
</td>
<td>
{{transaction.Status}}