Files
AstrBot/dashboard/src/views/ChatPage.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>