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