index.vue
1020 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
40
41
42
43
44
45
46
47
48
<template>
<div>
<!--轮播-->
<swiper></swiper>
<!--导航-->
<swiperItem></swiperItem>
<!--优惠专区-->
<discountZone></discountZone>
<!--天天特惠-->
<preferential></preferential>
<!--视听专区-->
<videoArea></videoArea>
</div>
</template>
<script>
import swiper from "@/components/swiper/swiper";
import swiperItem from "@/components/swiperItem/swiperItem";
import discountZone from "@/components/discountZone/discountZone";
import preferential from "@/components/preferential/preferential";
import videoArea from "@/components/videoArea/videoArea";
export default {
name: 'index',
data () {
return {
}
},
components:{
swiper,
swiperItem,
discountZone,
preferential,
videoArea
},
created(){
},
methods: {
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style rel="stylesheet/less" lang="less" scoped>
@import "index";
</style>