Split Menu between md and smaller devices
This commit is contained in:
@ -23,14 +23,14 @@ export default defineComponent({
|
||||
On-Budget Accounts
|
||||
<div v-for="account in $store.getters.OnBudgetAccounts" class="flex flex-row justify-between px-3">
|
||||
<router-link :to="'/budget/'+budgetid+'/account/'+account.ID">{{account.Name}}</router-link>
|
||||
<Currency :value="account.Balance" />
|
||||
<Currency v-if="$store.state.ExpandMenu" :value="account.Balance" />
|
||||
</div>
|
||||
</li>
|
||||
<li class="bg-red-200 rounded-lg m-1 p-1 px-3">
|
||||
Off-Budget Accounts
|
||||
<div v-for="account in $store.getters.OffBudgetAccounts" class="flex flex-row justify-between px-3">
|
||||
<router-link :to="'/budget/'+budgetid+'/account/'+account.ID">{{account.Name}}</router-link>
|
||||
<Currency :value="account.Balance" />
|
||||
<Currency v-if="$store.state.ExpandMenu" :value="account.Balance" />
|
||||
</div>
|
||||
</li>
|
||||
<li class="bg-red-200 rounded-lg m-1 p-1 px-3">
|
||||
|
Reference in New Issue
Block a user