index.vue 348 B

123456789101112131415161718192021222324
  1. <script setup lang="ts">
  2. import Header from "./header.vue";
  3. // import Footer from "./footer.vue";
  4. </script>
  5. <template>
  6. <div class="container">
  7. <Header />
  8. <router-view />
  9. </div>
  10. </template>
  11. <style scoped>
  12. .container{
  13. height: 100vh;
  14. overflow-y: auto;
  15. overflow-x: hidden;
  16. *{
  17. box-sizing: content-box;
  18. }
  19. }
  20. </style>