App.vue 450 B

123456789101112131415161718192021222324
  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 vuex from '../vuex'
  10. import ThreadSection from './ThreadSection.vue'
  11. import MessageSection from './MessageSection.vue'
  12. export default {
  13. components: {
  14. ThreadSection,
  15. MessageSection
  16. },
  17. created () {
  18. vuex.actions.getAllMessages()
  19. }
  20. }
  21. </script>