不会吃鱼的猫
不会吃鱼的猫
  • 发布:2023-01-11 17:10
  • 更新:2023-01-11 21:13
  • 阅读:210

page-meta的@scroll运行到APP和H5端无效,微信小程序有效

分类:uni-app

page-meta的@scroll运行到APP和H5端无效,微信小程序有效

测试代码如下:

<template>  
    <page-meta @scroll="utils.onScroll"></page-meta>  
    <view class="pageView">  

    </view>  
</template>  
<script module="utils" lang="wxs">  
    function onScroll(event, ownerInstance) {  
        console.log(event.detail.scrollTop)  
    }  

    module.exports = {  
        onScroll: onScroll,  
    }  
</script>  
<script>  
    export default {  
        data() {  
            return {  

            }  
        },  
        methods: {  

        }  
    }  
</script>  

<style lang="scss" scoped>  
    .pageView {  
        width: 100vw;  
        height: 200vh;  
    }  
</style>  
2023-01-11 17:10 负责人:无 分享
已邀请:
不会吃鱼的猫

不会吃鱼的猫 (作者)

APP和H5端无效,微信小程序有效

DCloud_UNI_Anne

DCloud_UNI_Anne

要回复问题请先登录注册