Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

Sidebar.vue 1.2KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template lang="pug">
  2. aside.sidebar.p-1
  3. h3 Messages
  4. input
  5. label search
  6. messages(:title="title" :users="users")
  7. </template>
  8. <script>
  9. import messages from './Messages.vue'
  10. export default {
  11. components: { messages },
  12. data: () => ({
  13. title:'Messages from Matches',
  14. uid: 111,
  15. users: [
  16. {
  17. name: 'Bob McRob',
  18. uid: 111,
  19. avatar: 'https://hips.hearstapps.com/hmg-prod.s3.amazonaws.com/images/newborn-baby-boy-sleeping-peacefully-wearing-knit-royalty-free-image-1589459736.jpg?crop=0.669xw:1.00xh;0.228xw,0&resize=640:*',
  20. metadata: { rawMetadata: 'howdy howdy howdy' },
  21. },
  22. {
  23. name: 'Rob Bebob',
  24. uid: 112,
  25. avatar: 'https://hips.hearstapps.com/hmg-prod.s3.amazonaws.com/images/newborn-baby-boy-sleeping-peacefully-wearing-knit-royalty-free-image-1589459736.jpg?crop=0.669xw:1.00xh;0.228xw,0&resize=640:*',
  26. metadata: { rawMetadata: 'this is the last message' },
  27. },
  28. ],
  29. }),
  30. }
  31. </script>
  32. <style lang="postcss">
  33. aside.sidebar
  34. background-color: yellow
  35. height: 100vh
  36. </style>