Conversation.vue 396 B

12345678910111213141516
  1. <template>
  2. <LayoutExperience>
  3. <ContentContainer>
  4. <ChatAsideMenu />
  5. <div class="conversation">会话</div>
  6. </ContentContainer>
  7. </LayoutExperience>
  8. </template>
  9. <script setup>
  10. import LayoutExperience from './layout/LayoutExperience.vue';
  11. import ContentContainer from './layout/ContentContainer.vue';
  12. import ChatAsideMenu from './conversation/ChatAsideMenu.vue';
  13. </script>