Move budgeting to own route

This commit is contained in:
2022-02-08 21:14:36 +00:00
parent eb195dfd29
commit 33bdfaddc4
4 changed files with 8 additions and 8 deletions

View File

@ -13,7 +13,7 @@ export default defineComponent({
<h1>Budgets</h1>
<div class="grid md:grid-cols-2 gap-6">
<Card v-for="budget in $store.getters.Budgets">
<router-link v-bind:to="'/budget/'+budget.ID" class="contents">
<router-link v-bind:to="'/budget/'+budget.ID+'/budgeting'" class="contents">
<!--<svg class="w-24"></svg>-->
<p class="w-24 text-center text-6xl"></p>
<span class="text-lg">{{budget.Name}}{{budget.ID == budgetid ? " *" : ""}}</span>