| 1234567891011121314151617181920 |
- <template>
- <div class="chat-page">
- <ClaudeChat />
- </div>
- </template>
- <script setup>
- import ClaudeChat from '~/components/chat/ClaudeChat.vue'
- definePageMeta({
- layout: 'default'
- })
- </script>
- <style scoped>
- .chat-page {
- height: calc(100vh - 80px);
- padding: 0;
- }
- </style>
|