列表滚动穿透问题 [复制链接]

管理员组
<Teleport to="body">
  <div v-if="show" class="fixed inset-0 z-50" style="pointer-events:none">
    <!-- touch-action:none 彻底阻止背景页面滚动 -->
    <div class="absolute inset-0 bg-black/40"
         style="pointer-events:auto;touch-action:none"
         @click="show = false"></div>
    <!-- pointer-events:auto 恢复卡片内交互 -->
    <div class="absolute right-3 top-20 w-72"
         style="pointer-events:auto">
      <div class="overflow-y-auto">评论内容</div>
    </div>
  </div>
</Teleport>
最新回复

请先登录后再回复 登录

uid:1 管理员组
关注
错过了不该错过的人,那就是遗憾!
发帖 62
评论 73
粉丝 1
关注 0
发新帖
目录
列表滚动穿透问题