mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-16 17:47:06 +08:00
15 lines
231 B
Vue
15 lines
231 B
Vue
<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> |