diff options
author | Aylur <[email protected]> | 2024-09-25 23:22:01 +0000 |
---|---|---|
committer | Aylur <[email protected]> | 2024-09-25 23:22:01 +0000 |
commit | 65654282a98cb0590d498e4ed9c924f97646f1dc (patch) | |
tree | 9150a8c5dca5429fafdd559db6e88f8bccb23d84 /docs/showcases/Showcase.vue | |
parent | fd8c3e81d8f7b235be123ce592f89e72f65a0f05 (diff) |
docs: restructure
Diffstat (limited to 'docs/showcases/Showcase.vue')
-rw-r--r-- | docs/showcases/Showcase.vue | 6 |
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> |