Komponenten eingebaut und benutzt (erste Schritte)
This commit is contained in:
19
components/AppHeader.vue
Normal file
19
components/AppHeader.vue
Normal 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>
|
||||
17
components/TheSidenav.vue
Normal file
17
components/TheSidenav.vue
Normal file
@ -0,0 +1,17 @@
|
||||
<template>
|
||||
<div class="sidenav">
|
||||
<div class="sidenav-content">
|
||||
<h1 class="menu-heading">
|
||||
WebAdmin
|
||||
</h1>
|
||||
<p>
|
||||
<NuxtLink to="/">
|
||||
Home
|
||||
</NuxtLink>
|
||||
<NuxtLink to="/address-management/adresses_index">
|
||||
Adressverwaltung
|
||||
</NuxtLink>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user