pc.vue 409 B

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