2023-12-24 20:05:34 +08:00
|
|
|
<template>
|
2023-12-20 21:52:42 +08:00
|
|
|
<div class="content-main">
|
|
|
|
|
<RouterView />
|
|
|
|
|
</div>
|
2023-12-14 10:15:23 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<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-07-21 23:13:27 +08:00
|
|
|
background-color: #f0f2f5;
|
2023-12-14 10:15:23 +08:00
|
|
|
}
|
2023-12-20 21:52:42 +08:00
|
|
|
</style>
|