Files
Yi.Admin/Yi.Bbs.Vue3/src/layout/ChatLayout.vue
2024-04-02 18:41:41 +08:00

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>