Fix more imports
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
<script lang="ts" setup>
|
||||
import NewBudget from '../dialogs/NewBudget.vue';
|
||||
import Card from '../components/Card.vue';
|
||||
import RowCard from '../components/RowCard.vue';
|
||||
import { useSessionStore } from '../stores/session';
|
||||
|
||||
const props = defineProps<{
|
||||
@ -13,7 +13,7 @@ const BudgetsList = useSessionStore().BudgetsList;
|
||||
<template>
|
||||
<h1>Budgets</h1>
|
||||
<div class="grid md:grid-cols-2 gap-6">
|
||||
<Card
|
||||
<RowCard
|
||||
v-for="budget in BudgetsList"
|
||||
:key="budget.ID"
|
||||
>
|
||||
@ -26,7 +26,7 @@ const BudgetsList = useSessionStore().BudgetsList;
|
||||
<span class="text-lg">{{ budget.Name
|
||||
}}{{ budget.ID == budgetid ? " *" : "" }}</span>
|
||||
</router-link>
|
||||
</Card>
|
||||
</RowCard>
|
||||
<NewBudget />
|
||||
</div>
|
||||
</template>
|
||||
|
Reference in New Issue
Block a user