summaryrefslogtreecommitdiff
path: root/src/HeroImage.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/HeroImage.vue')
-rw-r--r--src/HeroImage.vue5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/HeroImage.vue b/src/HeroImage.vue
index fc1c677..4dd7672 100644
--- a/src/HeroImage.vue
+++ b/src/HeroImage.vue
@@ -1,6 +1,9 @@
<template>
<figure class="image">
- <img :src="`dist/assets/hero-icons/${hero.toLowerCase()}.png`" :style="round? 'border-radius: 50%' : ''">
+ <img :src="`dist/assets/hero-icons/${hero.toLowerCase()}.png`"
+ :style="round? 'border-radius: 50%' : ''"
+ :alt="hero"
+ :title="hero">
</figure>
</template>