default.vue 622 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <div>
  3. <!-- Show the loading page -->
  4. <client-only placeholder-tag="client-only-placeholder" placeholder=" " />
  5. <v-app>
  6. <LayoutLoadingScreen />
  7. <LayoutHeader />
  8. <LayoutMainMenu />
  9. <v-main class="main">
  10. <LayoutSubheader />
  11. <LayoutAlertBar class="mt-1" />
  12. <!-- Page will be rendered here-->
  13. <slot />
  14. </v-main>
  15. <LazyLayoutAlertContainer />
  16. </v-app>
  17. </div>
  18. </template>
  19. <script setup lang="ts">
  20. import { useLayoutStore } from '~/stores/layout'
  21. const layoutStore = useLayoutStore()
  22. layoutStore.name = 'default'
  23. </script>