added sponsorings tab

ref #5
This commit is contained in:
Philipp Dormann 2021-03-02 18:19:58 +01:00
parent 13543c3cd2
commit e499357d6f
1 changed files with 6 additions and 3 deletions

View File

@ -56,7 +56,7 @@
:class="{ 'tab-active border-b-2 font-medium border-blue-500': (activetab === 'profile') }"
class="tab tab-underline py-4 px-6 block"
type="button"
>Mein Profil</button>
>Profil</button>
</div>
<div class="flex-none">
<button
@ -64,7 +64,7 @@
:class="{ 'tab-active border-b-2 font-medium border-blue-500': (activetab === 'laptimes') }"
class="tab tab-underline py-4 px-6 block"
type="button"
>Meine Rundenzeiten</button>
>Rundenzeiten</button>
</div>
<div class="flex-none">
<button
@ -72,7 +72,7 @@
:class="{ 'tab-active border-b-2 font-medium border-blue-500': (activetab === 'sponsorings') }"
class="tab tab-underline py-4 px-6 block"
type="button"
>Meine Spender</button>
>Spender</button>
</div>
</div>
<div v-if="(activetab === 'profile')" class="tab-content block">
@ -161,6 +161,9 @@
</section>
</div>
</div>
<div v-if="(activetab === 'sponsorings')" class="tab-content block">
<div class="py-4 w-full">coming soon...</div>
</div>
</div>
</div>
</div>