dresserList.vue
958 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
<template>
<div>
<!--标题-->
<textTitleBox :titles="null"></textTitleBox>
<div class="item_box">
<img class="head_portrait" src="static/img/1.png" alt="网家家"/>
<div class="user_info">
<div class="name">
冯提莫
</div>
<div class="desc">
冯提莫描述
</div>
</div>
<img class="arrow_right" src="static/img/icon_arrow_right.png" alt="网家家"/>
</div>
</div>
</template>
<script>
import textTitleBox from "@/components/textTitleBox/textTitleBox";
export default {
name: 'dresserList',
data () {
return {
}
},
props: ["dresserList"],
components:{
textTitleBox
},
created(){
},
methods: {
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style rel="stylesheet/less" lang="less" scoped>
@import "dresserList";
</style>