automated_uniapp/uni_modules/cool-fixtures/components/fix-empty/fix-empty.vue
2025-01-09 16:40:44 +08:00

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>