mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-07-25 13:59:14 +02:00
added frontend and updated backend with docker, wrote some initial instructions
This commit is contained in:
39
frontend/src/components/MenuBar.vue
Normal file
39
frontend/src/components/MenuBar.vue
Normal file
@@ -0,0 +1,39 @@
|
||||
<script lang="ts" setup>
|
||||
import { ref } from "vue";
|
||||
|
||||
const items = ref([
|
||||
{
|
||||
label: "Create Calendar",
|
||||
icon: "pi pi-fw pi-plus",
|
||||
url: "/",
|
||||
},
|
||||
{
|
||||
label: "FAQ",
|
||||
icon: "pi pi-fw pi-book",
|
||||
url: "/faq",
|
||||
},
|
||||
{
|
||||
label: "Impress",
|
||||
icon: "pi pi-fw pi-id-card",
|
||||
url: "/impress",
|
||||
},
|
||||
{
|
||||
label: "Privacy",
|
||||
url: "/privacy-policy",
|
||||
icon: "pi pi-fw pi-exclamation-triangle",
|
||||
},
|
||||
]);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<Menubar :model="items" class="menubar justify-content-center">
|
||||
<template #start></template>
|
||||
</Menubar>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.menubar {
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
}
|
||||
</style>
|
Reference in New Issue
Block a user