Photo.vue 408 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div v-if="photo">
  3. <img class="photo" alt="Photo of current user." :src="photo" />
  4. </div>
  5. <div v-else>
  6. <span class="photo-missing">👤</span>
  7. <p>No photo on file.</p>
  8. </div>
  9. </template>
  10. <script>
  11. export default {
  12. name: "Photo",
  13. props: ["photo"]
  14. };
  15. </script>
  16. <style scoped>
  17. .photo {
  18. max-width: 100px;
  19. min-width: 40px;
  20. }
  21. .photo-missing {
  22. font-size: 150px;
  23. }
  24. </style>