您的位置:MYSQL中文网 > Vant4 useScrollParent

Vant4 useScrollParent

2023-06-27 00:30 Vant4

 Vant4 useScrollParent

介绍

获取元素最近的可滚动父元素。

代码演示

基本用法

<div ref="root" />
import { ref, watch } from "vue";
import { useScrollParent, useEventListener } from "@vant/use";

export default {
  setup() {
    const root = ref();
    const scrollParent = useScrollParent(root);

    useEventListener(
      "scroll",
      () => {
        console.log("scroll");
      },
      { target: scrollParent }
    );

    return { root };
  },
};

API

类型定义

function useScrollParent(
  element: Ref<Element | undefined>
): Ref<Element | Window | undefined>;

参数

参数 说明 类型 默认值
element 当前元素 Ref<Element> -

返回值

参数 说明 类型
scrollParent 最近的可滚动父元素 Ref<Element>


阅读全文
以上是MYSQL中文网为你收集整理的 Vant4 useScrollParent全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 MYSQL中文网 mysqlcn.com 版权所有 联系我们
桂ICP备12005667号-29 Powered by CMS