19 lines
300 B
Vue
19 lines
300 B
Vue
<template>
|
|
<view class="me-empty-space" :style="{height: height + 'rpx'}"></view>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
height: {
|
|
type: [Number, String],
|
|
required: false,
|
|
default: 100,
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.me-empty-space {
|
|
width: 100%;
|
|
}
|
|
</style> |