在h5正常显示,但是运行到小程序就不行了,组件放在了components下面,在APP.vue中通过app.component全局注册
<template>
<view class="h_wrapper">
<view class="h_body">
<high-scroller :request="request" ref="scrollerRef">
</high-scroller>
</view>
</view>
</template>
<script setup>
const scrollerRef = ref(null)
onMounted(() => {
scrollerRef.value.reload()
})
</script>