mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-01 14:46:37 +08:00
26 lines
396 B
Vue
26 lines
396 B
Vue
<template>
|
|
<div class="chat-body" >
|
|
|
|
<RouterView />
|
|
</div>
|
|
</template>
|
|
<script setup>
|
|
import {onMounted} from "vue";
|
|
import chatHub from "@/hubs/chatHub.js";
|
|
onMounted(async () => {
|
|
chatHub();
|
|
});
|
|
|
|
</script>
|
|
<style scoped>
|
|
.chat-body
|
|
{
|
|
height: 100%;
|
|
/* padding: 5%; */
|
|
display: flex;
|
|
justify-content: center;
|
|
align-content: center;
|
|
flex-wrap: wrap;
|
|
}
|
|
</style>
|