add crystal post, small style tweaks
This commit is contained in:
16
components/content/ProseImg.vue
Normal file
16
components/content/ProseImg.vue
Normal file
@@ -0,0 +1,16 @@
|
||||
<script setup lang="ts">
|
||||
withDefaults(
|
||||
defineProps<{
|
||||
src: string;
|
||||
alt: string | undefined;
|
||||
}>(),
|
||||
{
|
||||
src: '',
|
||||
alt: '',
|
||||
}
|
||||
);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<img class="mx-auto" :src="src" :alt="alt" />
|
||||
</template>
|
||||
Reference in New Issue
Block a user