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

24 lines
328 B
Vue

<template class="back-color">
<div class="content-main">
<RouterView />
</div>
</template>
<style scoped>
.body-main{
min-height: 10rem;
min-width: 10rem;
background-color:#F0F2F5;
}
.content-main{
/* max-width:1200px; */
margin: 0 auto;
display: flex;
justify-content: center;
}
</style>