Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

Messages.vue 762B

1234567891011121314151617181920212223242526272829
  1. <template lang="pug">
  2. .sidebar--messages
  3. h5.message__title matches
  4. router-link(
  5. :to="`/chat/${match.profile.profile_id}`"
  6. v-for='match in matches'
  7. :key='match.profile.profile_id'
  8. :class="[pid == match.profile.profile_id ? 'active' : '', 'sidebar__message', 'f-col', 'start']"
  9. )
  10. img(:src='match.profile.avatar' style="max-height:100px")
  11. .message__right
  12. h4.message__name {{ match.profile.name }}
  13. p.message__content {{ match.profile }}
  14. </template>
  15. <script>
  16. import { mixins } from '../utils'
  17. export default {
  18. name: 'ProfileMessages',
  19. mixins: [mixins.pidMixin],
  20. props: {
  21. matches: {
  22. type: [Object, Array],
  23. default: () => [],
  24. },
  25. },
  26. }
  27. </script>