feat: 聊天室前端布局

This commit is contained in:
陈淳
2024-04-02 18:41:41 +08:00
parent 3bfe4b6980
commit 887ea275f6
3 changed files with 95 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<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>