Komponenten eingebaut und benutzt (erste Schritte)

This commit is contained in:
2023-05-02 16:07:30 +02:00
parent 4edf59fd4c
commit 35407b034f
7 changed files with 79 additions and 124 deletions

19
components/AppHeader.vue Normal file
View File

@ -0,0 +1,19 @@
<template>
<div class="header">
<table id="header-table">
<tr>
<th>
<NuxtLink to="/header/help">
Hilfe
</NuxtLink>
</th>
<th>
<NuxtLink to="/header/info">
Info
</NuxtLink>
</th>
<th> Logout </th>
</tr>
</table>
</div>
</template>