chore: upgrade to nuxt 4
This commit is contained in:
15
app/components/content/ProseImg.vue
Normal file
15
app/components/content/ProseImg.vue
Normal file
@@ -0,0 +1,15 @@
|
||||
<script setup lang="ts">
|
||||
const { src, alt = "" } = defineProps<{ src: string; alt?: string }>();
|
||||
|
||||
const imgSrc =
|
||||
src.startsWith("http://") || src.startsWith("https://")
|
||||
? src
|
||||
: `/images/posts/${src}`;
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<figure class="flex flex-col items-center">
|
||||
<img :src="imgSrc" class="drop-shadow-lg" :alt="alt" />
|
||||
<figcaption class="text-center" v-if="alt">{{ alt }}</figcaption>
|
||||
</figure>
|
||||
</template>
|
Reference in New Issue
Block a user