cell-image.vue
542 Bytes
<template>
<div>
<a :href="productUrl" target="_blank">
<img class="cell-img" :src="imageSrc">
</a>
</div>
</template>
<script>
export default {
name: 'CellImage',
props: {
imageSrc: {
type: String
},
productUrl: {
type: String
}
},
data() {
return {
}
}
}
</script>
<style lang="scss" scoped>
.cell-img {
max-width: 200px;
}
</style>