updated frontend from typescript to javascript

This commit is contained in:
cnachtigall1991
2021-10-05 00:16:20 +02:00
parent 27edfd0cfe
commit 886f182ff2
41 changed files with 1183 additions and 28 deletions

View File

@@ -1,3 +1,27 @@
<template>
<router-view/>
<header>
<Nav/>
</header>
<main>
<div class="spacer bg-secondary"></div>
<router-view/>
</main>
<footer>
<Footer />
</footer>
</template>
<script>
import Nav from "@/components/Nav";
import Footer from "@/components/Footer";
export default {
components: {Footer, Nav},
}
</script>
<style>
.spacer {
height: 70px;
}
</style>