Files
uniapp-im-shop/components/cb-loading/cb-loading.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>