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

17
components/TheSidenav.vue Normal file
View 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>