File size: 327 Bytes
d669ddb
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script setup lang="ts">
import ChatNav from '@/components/ChatNav/ChatNav.vue';
import ChatPromptStore from '@/components/ChatPromptStore/ChatPromptStore.vue';
import Chat from './components/Chat/Chat.vue';
</script>

<template>
  <main>
    <ChatNav />
    <ChatPromptStore />
    <Chat />
  </main>
</template>