99a943eb36
pipeline / build-and-push-images (push) Successful in 3m12s
NuxtJS, Vue, real web app Nuxt content: blog Better mobile/responsive design and practices Better practices overall
13 lines
250 B
Vue
13 lines
250 B
Vue
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
image: string
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<img class="object-contain sm:max-w-[85%] max-w-[95%] m-auto" :src="props.image" />
|
|
<div class="ml-auto mr-auto w-fit">
|
|
<slot />
|
|
</div>
|
|
</template>
|