chat.vue 285 B

1234567891011121314151617181920
  1. <template>
  2. <div class="chat-page">
  3. <ClaudeChat />
  4. </div>
  5. </template>
  6. <script setup>
  7. import ClaudeChat from '~/components/chat/ClaudeChat.vue'
  8. definePageMeta({
  9. layout: 'default'
  10. })
  11. </script>
  12. <style scoped>
  13. .chat-page {
  14. height: calc(100vh - 80px);
  15. padding: 0;
  16. }
  17. </style>