build's a bitch

This commit is contained in:
iamBadgers
2024-09-02 22:17:46 -07:00
parent 903117696e
commit 36f5d6b396
8 changed files with 134 additions and 64 deletions

View File

@@ -23,23 +23,41 @@
<div class="d-flex flex-row">
<div class="character-list">
<h3>{{ picks.length }} Character Picks</h3>
<v-data-table-virtual :headers="pickHeaders" :items="picks" height="500px" fixed-header>
<v-data-table-virtual
:headers="pickHeaders"
:items="picks"
height="500px"
fixed-header
>
<template v-slot:item.characterId="{ item }">
<a v-bind:href="`/#/characters/${item.characterId}`">{{ item.characterId }}</a>
<a v-bind:href="`/#/characters/${item.characterId}`">{{
item.characterId
}}</a>
</template>
<template v-slot:item.characterName="{ item }">
<a v-bind:href="`/#/characters/${item.characterId}`">{{ item.characterName }}</a>
<a v-bind:href="`/#/characters/${item.characterId}`">{{
item.characterName
}}</a>
</template>
</v-data-table-virtual>
</div>
<div class="character-list">
<h3>{{ apps.length }} Character Apps</h3>
<v-data-table-virtual :headers="appHeaders" :items="apps" height="500px" fixed-header>
<v-data-table-virtual
:headers="appHeaders"
:items="apps"
height="500px"
fixed-header
>
<template v-slot:item.characterId="{ item }">
<a v-bind:href="`/#/characters/${item.characterId}`">{{ item.characterId }}</a>
<a v-bind:href="`/#/characters/${item.characterId}`">{{
item.characterId
}}</a>
</template>
<template v-slot:item.characterName="{ item }">
<a v-bind:href="`/#/characters/${item.characterId}`">{{ item.characterName }}</a>
<a v-bind:href="`/#/characters/${item.characterId}`">{{
item.characterName
}}</a>
</template>
</v-data-table-virtual>
</div>