Try to use tailwind

This commit is contained in:
2022-02-04 16:34:16 +00:00
parent f7dfc7b455
commit d825379a01
9 changed files with 78 additions and 136 deletions

View File

@ -10,13 +10,13 @@ export default defineComponent({
<template>
<h1>Budgets</h1>
<v-container>
<v-card v-for="budget in $store.getters.Budgets" class="budget-item">
<v-card-title class="text-h5 grey lighten-2">
<div>
<div v-for="budget in $store.getters.Budgets" class="budget-item">
<div class="text-h5 grey lighten-2">
<router-link v-bind:to="'/budget/'+budget.ID">{{budget.Name}}{{budget.ID == budgetid ? " *" : ""}}</router-link>
</v-card-title>
</div>
<v-card-text><span class="time"></span></v-card-text>
</v-card>
</div>
<NewBudget />
</v-container>
</div>
</template>