Avatar.vue 418 B

12345678910111213141516171819202122232425262728
  1. <script setup>
  2. export default {
  3. name: "Avatar",
  4. props: {
  5. title: String,
  6. url: String,
  7. },
  8. };
  9. </script>
  10. <template>
  11. <div>
  12. <img class="avatar__logo" alt="Avatar" :src="url" />
  13. <h2 class="avatar__title">{{ title }}</h2>
  14. </div>
  15. </template>
  16. <style>
  17. .avatar__logo {
  18. width: 40%;
  19. max-width: 512px;
  20. background: #413;
  21. border: 5px solid #524;
  22. border-radius: 50%;
  23. box-shadow: 0 0 20px #325;
  24. }
  25. </style>