mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-31 22:26:36 +08:00
17 lines
254 B
Vue
17 lines
254 B
Vue
|
|
<template>
|
||
|
|
<div class="chat-body" >
|
||
|
|
|
||
|
|
<RouterView />
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
<style scoped>
|
||
|
|
.chat-body
|
||
|
|
{
|
||
|
|
height: 100%;
|
||
|
|
/* padding: 5%; */
|
||
|
|
display: flex;
|
||
|
|
justify-content: center;
|
||
|
|
align-content: center;
|
||
|
|
flex-wrap: wrap;
|
||
|
|
}
|
||
|
|
</style>
|