dresserList.vue 960 Bytes
<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>