gaoluyang
3 天以前 d1448cb0ef10f358bb7bddb4e1ec268515e0b787
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template>
  <u-gap :height="height" :bgColor="bgColor"></u-gap>
</template>
 
<script>
export default {
  props: {
    height: {
      type: [String, Number],
      default: 16
    },
    bgColor: {
      type: String,
      default: '#f4f4f5'
    }
  }
}
</script>