mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
21 lines
339 B
Vue
21 lines
339 B
Vue
<template>
|
|
<img v-bind="imageProps" :src="imageSrc" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
imageProps: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
computed: {
|
|
imageSrc() {
|
|
const src = this.imageProps.src
|
|
return src.startsWith('/') ? src.replace('/', '/api/') : src
|
|
},
|
|
},
|
|
}
|
|
</script>
|