1
0

initial commit

This commit is contained in:
2023-02-26 19:20:43 +01:00
commit 2ac1781763
105 changed files with 5471 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<template>
<img :alt="alt" :src="src" />
<figcaption><slot></slot></figcaption>
</template>
<script setup lang="ts">
const props = defineProps<{
src: string;
alt?: string;
caption: string;
}>();
</script>
<style>
figcaption {
text-align: center;
margin-top: 1rem;
margin-bottom: 1rem;
}
</style>