Vant3 useClickAway

2021-09-07 17:26 更新

介紹

監(jiān)聽(tīng)點(diǎn)擊元素外部的事件。

代碼演示

基本用法

<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 };
  },
};

自定義事件

通過(guò) eventName 選項(xiàng)可以自定義需要監(jiān)聽(tīng)的事件類型。

<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;

參數(shù)

參數(shù) 說(shuō)明 類型 默認(rèn)值
target 綁定事件的元素 Element | Ref<Element> -
listener 點(diǎn)擊外部時(shí)觸發(fā)的回調(diào)函數(shù) EventListener -
options 可選的配置項(xiàng) Options 見(jiàn)下表

Options

參數(shù) 說(shuō)明 類型 默認(rèn)值
eventName 監(jiān)聽(tīng)的事件類型 string click


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)