32 lines
529 B
Vue
32 lines
529 B
Vue
<template>
|
|
<fix-base-style
|
|
:styleSpacing="styleSpacing"
|
|
:styleColor="styleColor"
|
|
:position="position"
|
|
:index="index"
|
|
>
|
|
<view class="fix-empty" :style="{ height: height + 'rpx' }"></view>
|
|
</fix-base-style>
|
|
</template>
|
|
|
|
<script lang="ts" name="fix-empty" setup>
|
|
import { baseProps } from "../../hooks";
|
|
|
|
const props = defineProps({
|
|
height: {
|
|
type: Number,
|
|
default: 20,
|
|
},
|
|
index: {
|
|
type: Number,
|
|
default: 0,
|
|
},
|
|
...baseProps,
|
|
});
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.fix-empty {
|
|
width: 750rpx;
|
|
}
|
|
</style>
|