You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

18 lines
261 B

<template><img v-lazy="src" :class="customClass" /></template>
<script>
export default {
props: {
src: {
type: String,
},
customClass: {
type: String,
},
},
};
</script>
<style lang="scss" scoped>
img {
width: 100%;
}
</style>