summaryrefslogtreecommitdiff
path: root/docs/showcases/Showcase.vue
diff options
context:
space:
mode:
Diffstat (limited to 'docs/showcases/Showcase.vue')
-rw-r--r--docs/showcases/Showcase.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/showcases/Showcase.vue b/docs/showcases/Showcase.vue
index 5873a8e..a5a1e01 100644
--- a/docs/showcases/Showcase.vue
+++ b/docs/showcases/Showcase.vue
@@ -1,7 +1,7 @@
<script setup>
const props = defineProps({
src: { type: String, required: true },
- author: { type: String, required: true },
+ label: { type: String, required: true },
url: { type: String, required: true }
});
</script>
@@ -9,10 +9,10 @@ const props = defineProps({
<template>
<figure>
<a :href="url">
- <img :src="src" :alt="author" />
+ <img :src="src" :alt="label" />
</a>
<figcaption>
- <span>Author: {{ author }}</span>
+ <span>{{ label }}</span>
</figcaption>
</figure>
</template>