1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| <template>
| <view>
| <u-gap :height="coreshopData.parameters.height * 2" :bg-color="coreshopData.parameters.backgroundColor"></u-gap>
| </view>
| </template>
|
| <script>
| export default {
| name: "coreshopBlank",
| props: {
| coreshopData: {
| // type: Array,
| required: true,
| }
| },
| methods: {
|
| }
| }
| </script>
|
|