123456789101112131415161718192021222324 |
- <script setup lang="ts">
- import Header from "./header.vue";
- // import Footer from "./footer.vue";
- </script>
- <template>
- <div class="container">
- <Header />
- <router-view />
- </div>
- </template>
- <style scoped>
- .container{
- height: 100vh;
- overflow-y: auto;
- overflow-x: hidden;
- *{
- box-sizing: content-box;
- }
- }
- </style>
|