blob: 94b6828b9ed94c49109477c0b9035ecc077fa658 [file] [log] [blame]
<template>
<image class="slider-item" :src="image"></image>
</template>
<script>
module.exports = {
props: {
image: { default: '' },
link: { default: '' },
}
};
</script>
<style scoped>
.slider-item {
width: 348px;
height: 400px;
}
</style>