Skip to content

Commit

Permalink
fix: fix missing div before layout to prevent errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal Klesse committed Feb 19, 2024
1 parent 442eb2d commit 626dc2b
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions nuxt-base-template/src/app.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
<template>
<NuxtLayout>
<ModalContainer />
<NotificationContainer />
<BaseContextMenuContainer />
<NuxtPage />
</NuxtLayout>
</template>
<div>
<NuxtLayout>
<ModalContainer />
<NotificationContainer />
<BaseContextMenuContainer />
<NuxtPage />
</NuxtLayout>
</div>
</template>

0 comments on commit 626dc2b

Please sign in to comment.