mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-01 22:56:36 +08:00
24 lines
324 B
Vue
24 lines
324 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{
|
|
margin: 0 auto;
|
|
display: flex;
|
|
justify-content: center;
|
|
min-height: 1150px;
|
|
}
|
|
</style> |