File size: 231 Bytes
8ede856
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<script setup>
import Chat from '@/components/chat/Chat.vue'
</script>

<template>
    <div class="chat-container">
        <Chat />
    </div>
</template>

<style scoped>
.chat-container {
    height: calc(100vh - 60px)
}
</style>