19 lines
312 B
Vue
19 lines
312 B
Vue
<script setup>
|
|
const props = defineProps({
|
|
/** 距离顶部高度 */
|
|
top: {
|
|
type: Number,
|
|
default: 32
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<uni-load-more
|
|
:style="{ 'margin-top': `${props.top}rpx` }"
|
|
status="loading"
|
|
></uni-load-more>
|
|
</template>
|
|
|
|
<style lang="scss" scoped></style>
|