| 12345678910111213141516171819202122232425262728 |
- <template>
- <div class="pc-layout">
- <Header />
- <main class="pc-layout-main">
- <slot />
- </main>
- <Footer />
- </div>
- </template>
- <script setup>
- </script>
- <style scoped lang="scss">
- .pc-layout {
- width: 100%;
- min-height: 100vh;
- background-color: #030014;
- display: flex;
- flex-direction: column;
- }
- .pc-layout-main {
- flex: 1;
- width: 100%;
- }
- </style>
|