mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-12 04:06:37 +08:00
22 lines
402 B
Vue
22 lines
402 B
Vue
<template>
|
|
<StarBackground :speed="0.2" :number="1000"/>
|
|
<div class="content-main">
|
|
<RouterView />
|
|
</div>
|
|
|
|
|
|
</template>
|
|
<script setup>
|
|
import StarBackground from "@/components/StarBackground.vue";
|
|
</script>
|
|
<style scoped>
|
|
.content-main {
|
|
width: 100%;
|
|
/* height: 100%; */
|
|
display: flex;
|
|
justify-content: center;
|
|
/* min-height: 1150px; */
|
|
/*background-color: #f0f2f5;*/
|
|
}
|
|
</style>
|