product-image.vue
313 Bytes
<template>
<div class="product-image">
<span>{{skn}}</span>
<img :src="src" alt="" width="150px" height="150px">
</div>
</template>
<style scoped>
.product-image {
width: 150px;
text-align: center;
margin-top: 20px;
}
</style>
<script>
export default {
props: ["src",'skn']
};
</script>