App.vue 384 B

123456789101112131415161718192021
  1. <style src="../css/chat.css"></style>
  2. <template>
  3. <div class="chatapp">
  4. <thread-section></thread-section>
  5. <message-section></message-section>
  6. </div>
  7. </template>
  8. <script>
  9. import ThreadSection from './ThreadSection.vue'
  10. import MessageSection from './MessageSection.vue'
  11. export default {
  12. name: 'App',
  13. components: {
  14. ThreadSection,
  15. MessageSection
  16. }
  17. }
  18. </script>