videoArea.vue
1.09 KB
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>
<titleBox :titles="titles"></titleBox>
<div class="item_box">
<img src="/static/img/pic_1.jpg" alt="网家家"/>
<div class="title">
美猴王系列绘本(套装共32册)
</div>
<div class="desc">
规格:32册/套
</div>
<div class="pic_box">
<div class="pice">
<div class="now">¥ 361.9</div>
<div class="original">¥ 399.9</div>
</div>
<!--<div class="btn">-->
<!--立即购买-->
<!--</div>-->
</div>
</div>
</div>
</template>
<script>
import titleBox from "@/components/titleBox/titleBox";
export default {
name: 'videoArea',
data () {
return {
titles:null
}
},
components:{
titleBox
},
created(){
},
methods: {
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style rel="stylesheet/less" lang="less" scoped>
@import 'videoArea';
</style>