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

25 lines
316 B
Vue
Raw Normal View History

2023-03-03 21:58:58 +08:00
<template class="back-color">
2023-03-03 23:56:37 +08:00
<div class="body-main">
<div class="content-main">
<RouterView />
</div>
</div>
2023-03-03 21:58:58 +08:00
</template>
<style scoped>
.body-main{
min-height: 10rem;
min-width: 10rem;
background-color:#F0F2F5;
2023-03-03 23:56:37 +08:00
}
.content-main{
max-width:1100px;
margin: 0 auto;
2023-03-03 21:58:58 +08:00
}
</style>