您的位置:58编程 > Vant4 useClickAway

Vant4 useClickAway

2023-03-28 10:33 Vant4

 Vant4 useClickAway

介绍

监听点击元素外部的事件。

代码演示

基本用法

<div ref="root" />
import { ref } from "vue";
import { useClickAway } from "@vant/use";

export default {
  setup() {
    const root = ref();
    useClickAway(root, () => {
      console.log("click outside!");
    });

    return { root };
  },
};

自定义事件

通过 ​eventName​ 选项可以自定义需要监听的事件类型。

<div ref="root" />
import { ref } from "vue";
import { useClickAway } from "@vant/use";

export default {
  setup() {
    const root = ref();
    useClickAway(
      root,
      () => {
        console.log("touch outside!");
      },
      { eventName: "touchstart" }
    );

    return { root };
  },
};

API

类型定义

type Options = {
  eventName?: string;
};

function useClickAway(
  target: Element | Ref<Element | undefined>,
  listener: EventListener,
  options?: Options
): void;

参数

参数 说明 类型 默认值
target 绑定事件的元素,支持传入数组来绑定多个元素 Element | Ref<Element> | Array<Element | Ref<Element>> -
listener 点击外部时触发的回调函数 EventListener -
options 可选的配置项 Options 见下表

Options

参数 说明 类型 默认值
eventName 监听的事件类型 string click


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