Skip to content
Snippets Groups Projects

Merge wikis

Merged Remi PLANEL requested to merge merge_Wikis into dev
Files
266+
<template>
<v-img :src="refinedSrc" :alt="alt" :width="width" :height="height"></v-img>
<v-card flat color="transparent" class="d-flex justify-center">
<v-img :src="refinedSrc" :alt="alt" :width="width" :height="height" :max-width="maxWidth"
content-class="d-flex justify-center"></v-img>
</v-card>
</template>
<script setup lang="ts">
@@ -19,6 +22,10 @@ const props = defineProps({
type: [String, Number],
default: undefined
},
maxWidth: {
type: [String, Number],
default: undefined
},
height: {
type: [String, Number],
default: undefined
@@ -34,5 +41,4 @@ const refinedSrc = computed(() => {
}
return props.src
})
</script>
\ No newline at end of file
</script>
\ No newline at end of file