Последняя версия с сервера прошлого разработчика

This commit is contained in:
2025-07-10 04:35:51 +00:00
commit c731570032
1174 changed files with 134314 additions and 0 deletions

View File

@@ -0,0 +1,32 @@
<template>
<img :class="{'object-top sm:object-center': existSource}" :src="setImage()"
alt=""
/>
</template>
<script>
export default {
components: {},
props: {
source: String,
type: String,
},
computed: {
existSource () {
return !this.source
}
},
methods: {
setImage() {
if (this.source) {
return this.source
}
// if(this.type == 'music'){
// return '/image/modalimg1.jpg'
// }
// return '/image/card4.jpg'
return '/image/default-placeholder.jpg'
},
}
}
</script>