recommend-product-list.vue
594 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<template>
<div class="product-list">
<RecommendProductItem class="item" v-for="i in list" v-bind="i"></RecommendProductItem>
</div>
</template>
<script>
import RecommendProductItem from './recommend-product-item';
export default {
name: 'RecommendProductList',
props: ['list'],
components: {
RecommendProductItem
}
};
</script>
<style lang="scss" scoped>
.product-list {
width: 100%;
overflow: scroll;
white-space: nowrap;
}
.item + .item {
margin-left: 22px;
}
.item:first-child {
margin-left: 40px;
}
.item:last-child {
margin-right: 40px;
}
</style>