App.vue 407 B

12345678910111213141516171819202122
  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 store from '../store'
  10. import ThreadSection from './ThreadSection.vue'
  11. import MessageSection from './MessageSection.vue'
  12. export default {
  13. store,
  14. components: {
  15. ThreadSection,
  16. MessageSection
  17. }
  18. }
  19. </script>