index.vue 367 B

123456789101112131415161718192021
  1. <script setup>
  2. import Header from "@/components/header/index.vue"
  3. </script>
  4. <template>
  5. <div class="content">
  6. <Header></Header>
  7. <router-view></router-view>
  8. </div>
  9. </template>
  10. <style scoped lang="scss">
  11. .content {
  12. width: 1920px;
  13. height: 1080px;
  14. background-color: #f8f9fe;
  15. box-sizing: border-box;
  16. padding: 50px;
  17. }
  18. </style>