web.vue 433 B

123456789101112131415161718192021222324252627282930
  1. <template>
  2. <div class="web-layout">
  3. <Header />
  4. <main class="web-layout-main">
  5. <slot />
  6. </main>
  7. <Footer />
  8. </div>
  9. </template>
  10. <script setup>
  11. </script>
  12. <style scoped lang="scss">
  13. .web-layout {
  14. width: 100%;
  15. min-height: 100vh;
  16. background-color: #030014;
  17. display: flex;
  18. flex-direction: column;
  19. }
  20. .web-layout-main {
  21. flex: 1;
  22. width: 100%;
  23. box-sizing: border-box;
  24. overflow: hidden;
  25. }
  26. </style>