page.vue
<script setup lang="ts">
import { onReachBottom } from '@dcloudio/uni-app'
import TestComponent from './TestComponent.vue'
// 必须调用, 否则组件内的onReachBottom不会触发
onReachBottom(() => {
console.log('onReachBottom by page')
})
</script>
<template>
<TestComponent />
</template>
TestComponent.vue
<script setup lang="ts">
import { onReachBottom } from '@dcloudio/uni-app'
onReachBottom(() => {
console.log('onReachBottom by component')
})
</script>
<template>
<view :style="{ height: '200vh' }" />
</template>
4***@qq.com
VUE2组件内还是无效
2024-11-01 13:08