2023-12-24 20:05:34 +08:00
|
|
|
<template>
|
2024-11-17 12:19:48 +08:00
|
|
|
<StarBackground :speed="0.2" :number="1000"/>
|
2023-12-20 21:52:42 +08:00
|
|
|
<div class="content-main">
|
|
|
|
|
<RouterView />
|
|
|
|
|
</div>
|
2023-12-14 10:15:23 +08:00
|
|
|
|
2024-11-17 12:19:48 +08:00
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
<script setup>
|
|
|
|
|
import StarBackground from "@/components/StarBackground.vue";
|
|
|
|
|
</script>
|
2023-12-14 10:15:23 +08:00
|
|
|
<style scoped>
|
2023-12-20 21:52:42 +08:00
|
|
|
.content-main {
|
2023-12-24 20:05:34 +08:00
|
|
|
width: 100%;
|
2024-06-05 23:23:33 +08:00
|
|
|
/* height: 100%; */
|
2023-12-20 21:52:42 +08:00
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
2023-12-24 20:05:34 +08:00
|
|
|
/* min-height: 1150px; */
|
2024-11-17 12:19:48 +08:00
|
|
|
/*background-color: #f0f2f5;*/
|
2023-12-14 10:15:23 +08:00
|
|
|
}
|
2023-12-20 21:52:42 +08:00
|
|
|
</style>
|