/*! 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:'

useScrollParent

\n

Intro

\n

Get the closest parent element that is scrollable.

\n

Usage

\n

Basic Usage

\n
<div ref="root" />\n
\n
import { 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
\n

API

\n

Type Declarations

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

Params

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescriptionTypeDefault Value
elementThe current elementRef<Element>-
\n

Return Value

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescriptionType
scrollParentThe closest parent element that is scrollableRef<Element>
\n
'},null,8,e))}}}]);