article-body.vue
676 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
<template>
<Scroll class="scroll-wrapper" :options="scrollOpts">
<div v-for="i in 40">huangtao {{i}}</div>
<Recommend>
<RecommendProductList></RecommendProductList>
</Recommend>
</Scroll>
</template>
<script>
import {Scroll} from 'cube-ui';
import RecommendProductList from './recommend-product-list';
import Recommend from './recommend'
export default {
name: 'ArticleBody',
components: {
Scroll,
RecommendProductList,
Recommend
},
data() {
return {
scrollOpts: {
eventPassthrough: 'horizontal'
}
};
}
};
</script>
<style lang="scss" scoped>
.scroll-wrapper {
background-color: white;
}
</style>