Extract card and use for budget list

This commit is contained in:
2022-02-04 17:16:03 +00:00
parent dfa8f369f0
commit 3f7f646120
3 changed files with 22 additions and 15 deletions

View File

@ -69,7 +69,7 @@ export default defineComponent({
</v-card-header-text>
</v-card-header>
<v-card-actions class="justify-center">
<v-btn @click="clearBudget" color="error">Clear budget</v-btn>
<v-btn @click="clearBudget">Clear budget</v-btn>
</v-card-actions>
</v-card>
</v-col>
@ -82,7 +82,7 @@ export default defineComponent({
</v-card-header-text>
</v-card-header>
<v-card-actions class="justify-center">
<v-btn @click="deleteBudget" color="error">Delete budget</v-btn>
<v-btn @click="deleteBudget">Delete budget</v-btn>
</v-card-actions>
</v-card>
</v-col>
@ -95,7 +95,7 @@ export default defineComponent({
</v-card-header-text>
</v-card-header>
<v-card-actions class="justify-center">
<v-btn @click="cleanNegative" color="primary">Fix negative</v-btn>
<v-btn @click="cleanNegative">Fix negative</v-btn>
</v-card-actions>
</v-card>
</v-col>
@ -121,7 +121,6 @@ export default defineComponent({
<v-btn
:disabled="filesIncomplete"
@click="ynabImport"
color="primary"
>Importieren</v-btn>
</v-card-actions>
</v-card>