* refactoring and fixes by login

feature: #4
This commit is contained in:
2023-01-04 00:25:46 +01:00
parent 46dd4ef361
commit 1eab4c586f
15 changed files with 262 additions and 255 deletions

View File

@@ -1,17 +1,15 @@
<script setup>
import Navbar from "../components/Navbar.vue";
</script>
<script>
export default {
mounted() {
}
}
</script>
<template>
<Navbar/><!-- Causes rerendering each time todo: possible use in App.vue-->
<div class="about">
<h1>This is an Administration page</h1>
</div>
</template>
<style>
</style>
<script setup>
import Navbar from '../components/Navbar.vue'
</script>
<script>
export default {
mounted() {}
}
</script>
<template>
<Navbar /><!-- Causes rerendering each time todo: possible use in App.vue-->
<div class="about">
<h1>This is an Administration page</h1>
</div>
</template>
<style></style>