pc.vue 383 B

12345678910111213141516171819202122232425262728
  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. }
  24. </style>