mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-31 06:06:36 +08:00
25 lines
316 B
Vue
25 lines
316 B
Vue
|
|
<template class="back-color">
|
|
<div class="body-main">
|
|
<div class="content-main">
|
|
<RouterView />
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
.body-main{
|
|
min-height: 10rem;
|
|
min-width: 10rem;
|
|
background-color:#F0F2F5;
|
|
|
|
}
|
|
.content-main{
|
|
max-width:1100px;
|
|
margin: 0 auto;
|
|
}
|
|
</style> |