h5.vue 414 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <div class="h5-layout">
  3. <HeaderH5 />
  4. <main class="h5-layout-main">
  5. <slot />
  6. </main>
  7. <FooterH5 />
  8. </div>
  9. </template>
  10. <script setup>
  11. </script>
  12. <style scoped lang="scss">
  13. .h5-layout {
  14. width: 100%;
  15. min-height: 100vh;
  16. background-color: #030014;
  17. display: flex;
  18. flex-direction: column;
  19. }
  20. .h5-layout-main {
  21. flex: 1;
  22. width: 100%;
  23. padding: 60px 16px 16px;
  24. }
  25. </style>