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>
|
|