Files
Yi.Admin/Yi.Bbs.Vue3/src/layout/AppBody.vue

19 lines
293 B
Vue
Raw Normal View History

2023-12-20 21:52:42 +08:00
<template class="back-color">
<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
.body-main {
min-height: 10rem;
min-width: 10rem;
background-color: #f0f2f5;
2023-12-14 10:15:23 +08:00
}
2023-12-20 21:52:42 +08:00
.content-main {
display: flex;
justify-content: center;
min-height: 1150px;
2023-12-14 10:15:23 +08:00
}
2023-12-20 21:52:42 +08:00
</style>