/*! For license information please see 3364.230c427c.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["3364"],{17531:function(n,s,a){"use strict";a.r(s);var t=a("80681");let e=["innerHTML"];s.default={setup:()=>({html:""}),render:()=>((0,t.wg)(),(0,t.iD)("div",{class:"van-doc-markdown-body",innerHTML:'

useEventListener

\n

Intro

\n

Attaching an event when the component is mounted and activated, then removing the event when the component is unmounted and deactivated.

\n

Usage

\n

Basic Usage

\n
import { ref } from 'vue';\nimport { useEventListener } from '@vant/use';\n\nexport default {\n  setup() {\n    // attach the resize event to window\n    useEventListener('resize', () => {\n      console.log('window resize');\n    });\n\n    // attach the click event to the body element\n    useEventListener(\n      'click',\n      () => {\n        console.log('click body');\n      },\n      { target: document.body },\n    );\n  },\n};\n
\n

Remove Event Listener

\n

useEventListener will return a cleanup function\uFF0Cyou can call it to remove the event listener.

\n
import { ref } from 'vue';\nimport { useEventListener } from '@vant/use';\n\nexport default {\n  setup() {\n    const cleanup = useEventListener('resize', () => {\n      console.log('window resize');\n    });\n\n    cleanup();\n  },\n};\n
\n

API

\n

Type Declarations

\n
type Options = {\n  target?: EventTarget | Ref<EventTarget>;\n  capture?: boolean;\n  passive?: boolean;\n};\n\nfunction useEventListener(\n  type: string,\n  listener: EventListener,\n  options?: Options,\n): () => void;\n
\n

Params

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescriptionTypeDefault Value
typeEvent typestring-
listenerCallback functionEventListener-
optionsOptionsOptions-
\n

Options

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDescriptionTypeDefault Value
targetTarget elementEventTarget | Ref<EventTarget>window
captureWhether to enable capturebooleanfalse
passiveif true, indicates that the listener will never call preventDefault()booleanfalse
\n
'},null,8,e))}}}]);