mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender-pwa.git
synced 2026-01-16 22:22:25 +01:00
12 lines
203 B
Vue
12 lines
203 B
Vue
<script lang="ts" setup>
|
|
import MenuBar from "./components/MenuBar.vue";
|
|
import { RouterView } from "vue-router";
|
|
</script>
|
|
|
|
<template>
|
|
<MenuBar />
|
|
<RouterView />
|
|
</template>
|
|
|
|
<style scoped></style>
|