123456789101112131415161718192021 |
- <script setup>
- import Header from "@/components/header/index.vue"
- </script>
- <template>
- <div class="content">
- <Header></Header>
- <router-view></router-view>
- </div>
- </template>
- <style scoped lang="scss">
- .content {
- width: 1920px;
- height: 1080px;
- background-color: #f8f9fe;
- box-sizing: border-box;
- padding: 50px;
- }
- </style>
|