12345678910111213141516171819202122232425262728 |
- <script setup>
- export default {
- name: "Avatar",
- props: {
- title: String,
- url: String,
- },
- };
- </script>
- <template>
- <div>
- <img class="avatar__logo" alt="Avatar" :src="url" />
- <h2 class="avatar__title">{{ title }}</h2>
- </div>
- </template>
- <style>
- .avatar__logo {
- width: 40%;
- max-width: 512px;
- background: #413;
- border: 5px solid #524;
- border-radius: 50%;
- box-shadow: 0 0 20px #325;
- }
- </style>
|