index.vue 380 B

123456789101112131415161718192021222324
  1. <template>
  2. <div class="wrap">
  3. <div class="content">
  4. <AiChat></AiChat>
  5. </div>
  6. </div>
  7. </template>
  8. <script setup>
  9. import AiChat from '/@/views/super/airag/aiapp/chat/AiChat.vue';
  10. </script>
  11. <style lang="less" scoped>
  12. .wrap {
  13. height: 100%;
  14. width: 100%;
  15. .content {
  16. background: #fff;
  17. width: 100%;
  18. height: 100%;
  19. }
  20. }
  21. </style>