mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-14 13:16:39 +08:00
21 lines
249 B
Vue
21 lines
249 B
Vue
|
|
|
||
|
|
import { h } from 'vue';
|
||
|
|
|
||
|
|
<template class="back-color">
|
||
|
|
<div class="body-main"> 身体 <RouterView /></div>
|
||
|
|
|
||
|
|
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
.back-color{
|
||
|
|
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
.body-main{
|
||
|
|
min-height: 10rem;
|
||
|
|
min-width: 10rem;
|
||
|
|
background-color:#F0F2F5;
|
||
|
|
}
|
||
|
|
</style>
|