Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

PairsList.vue 756B

1234567891011121314151617181920212223242526272829303132333435
  1. <template lang="pug">
  2. section.pairs-list
  3. article(v-if="pairs.length")
  4. .pair.w-flex.align-center.justify-space-around(
  5. v-for="p in pairs"
  6. )
  7. .dot--icon
  8. .avatar
  9. .idCard
  10. p S.R.
  11. p Registered Nurse
  12. p(v-else) No results.
  13. </template>
  14. <script setup>
  15. const props = defineProps({
  16. pairs: {
  17. type: [Object, Array],
  18. default: () => [{}],
  19. },
  20. })
  21. </script>
  22. <style lang="sass">
  23. .pairs-list
  24. article
  25. .dot--icon
  26. width:3vw
  27. height:3vw
  28. border-radius:50%
  29. background-color:#60C3FF
  30. .avatar
  31. width:10vw
  32. height:10vw
  33. background-color:#D5D5D5
  34. </style>