Fix some linter issues

This commit is contained in:
2022-03-15 19:50:49 +00:00
parent 3ea90a5ebe
commit 66322ebd86
6 changed files with 49 additions and 32 deletions

View File

@ -13,14 +13,18 @@ const BudgetsList = useSessionStore().BudgetsList;
<template>
<h1>Budgets</h1>
<div class="grid md:grid-cols-2 gap-6">
<Card v-for="budget in BudgetsList">
<Card
v-for="budget in BudgetsList"
:key="budget.ID"
>
<router-link
:to="'/budget/'+budget.ID+'/budgeting'"
class="contents"
>
<!--<svg class="w-24"></svg>-->
<p class="w-24 text-center text-6xl" />
<span class="text-lg">{{ budget.Name }}{{ budget.ID == budgetid ? " *" : "" }}</span>
<span class="text-lg">{{ budget.Name
}}{{ budget.ID == budgetid ? " *" : "" }}</span>
</router-link>
</Card>
<NewBudget />