Merge pull request #15 from IT4Change/fix-flickering-in-topbar

feat(frontend): switch TopBar from DefaultLayout to PageShell
This commit is contained in:
Hannes Heine 2023-11-24 14:32:07 +01:00 committed by GitHub
commit 2b162f8482
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View File

@ -1,5 +1,10 @@
<template> <template>
<v-app> <v-app>
<TopMenu />
<slot /> <slot />
</v-app> </v-app>
</template> </template>
<script lang="ts" setup>
import TopMenu from '#components/menu/TopMenu.vue'
</script>

View File

@ -1,5 +1,4 @@
<template> <template>
<TopMenu />
<v-main class="bg-grey-lighten-3"> <v-main class="bg-grey-lighten-3">
<v-container> <v-container>
<v-row> <v-row>
@ -22,7 +21,5 @@
<script lang="ts" setup> <script lang="ts" setup>
import { useSlots } from 'vue' import { useSlots } from 'vue'
import TopMenu from '#components/menu/TopMenu.vue'
const slots = useSlots() const slots = useSlots()
</script> </script>