/*! For license information please see 1076.76a1f1a3.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["1076"],{7517:function(s,n,a){"use strict";a.r(n);var t=a("80681");let e=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,t.wg)(),(0,t.iD)("div",{class:"van-doc-markdown-body",innerHTML:'
Get the closest parent element that is scrollable.
\n<div ref="root" />\n
\nimport { ref, watch } from 'vue';\nimport { useScrollParent, useEventListener } from '@vant/use';\n\nexport default {\n setup() {\n const root = ref();\n const scrollParent = useScrollParent(root);\n\n useEventListener(\n 'scroll',\n () => {\n console.log('scroll');\n },\n { target: scrollParent },\n );\n\n return { root };\n },\n};\n
\nfunction useScrollParent(\n element: Ref<Element | undefined>,\n): Ref<Element | Window | undefined>;\n
\nName | \nDescription | \nType | \nDefault Value | \n
---|---|---|---|
element | \nThe current element | \nRef<Element> | \n- | \n
Name | \nDescription | \nType | \n
---|---|---|
scrollParent | \nThe closest parent element that is scrollable | \nRef<Element> | \n