21 lines
264 B
Vue
21 lines
264 B
Vue
|
|
<template>
|
||
|
|
<img :src="src" alt="" class="cus-img">
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: "CusImg",
|
||
|
|
props: {
|
||
|
|
src: String
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped lang="less">
|
||
|
|
.cus-img {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
object-fit: fill;
|
||
|
|
}
|
||
|
|
</style>
|