跳到内容

onClickOutside

类别
导出大小
893 B
最后更改
上个月

监听元素外部的点击事件。适用于模态框或下拉菜单。

演示

用法

vue
<script setup>
import { onClickOutside } from '@vueuse/core'
import { ref } from 'vue'

const target = ref(null)

onClickOutside(target, event => console.log(event))
</script>

<template>
  <div ref="target">
    Hello world
  </div>
  <div>Outside element</div>
</template>

此函数使用 Event.composedPath(),该函数在 IE 11、Edge 18 及更低版本中不受支持。如果您要针对这些浏览器,我们建议您在项目中包含 此代码片段

组件用法

此函数还通过 @vueuse/components 包提供无渲染组件版本。 了解有关用法的更多信息

vue
<template>
  <OnClickOutside :options="{ ignore: [/* ... */] }" @trigger="count++">
    <div>
      Click Outside of Me
    </div>
  </OnClickOutside>
</template>

指令用法

此函数还通过 @vueuse/components 包提供指令版本。 了解有关用法的更多信息

vue
<script setup lang="ts">
import { vOnClickOutside } from '@vueuse/components'
import { ref } from 'vue'

const modal = ref(false)
function closeModal() {
  modal.value = false
}
</script>

<template>
  <button @click="modal = true">
    Open Modal
  </button>
  <div v-if="modal" v-on-click-outside="closeModal">
    Hello World
  </div>
</template>

您还可以将处理程序设置为数组,以设置指令的配置项。

vue
<script setup>
import { vOnClickOutside } from '@vueuse/components'
import { ref } from 'vue'

const modal = ref(false)

const ignoreElRef = ref()

const onClickOutsideHandler = [
  (ev) => {
    console.log(ev)
    modal.value = false
  },
  { ignore: [ignoreElRef] },
]
</script>

<template>
  <button @click="modal = true">
    Open Modal
  </button>

  <div ref="ignoreElRef">
    click outside ignore element
  </div>

  <div v-if="modal" v-on-click-outside="onClickOutsideHandler">
    Hello World
  </div>
</template>

类型声明

显示类型声明
typescript
export interface OnClickOutsideOptions extends ConfigurableWindow {
  /**
   * List of elements that should not trigger the event.
   */
  ignore?: MaybeRefOrGetter<(MaybeElementRef | string)[]>
  /**
   * Use capturing phase for internal event listener.
   * @default true
   */
  capture?: boolean
  /**
   * Run handler function if focus moves to an iframe.
   * @default false
   */
  detectIframe?: boolean
}
export type OnClickOutsideHandler<
  T extends {
    detectIframe: OnClickOutsideOptions["detectIframe"]
  } = {
    detectIframe: false
  },
> = (
  evt: T["detectIframe"] extends true
    ? PointerEvent | FocusEvent
    : PointerEvent,
) => void
/**
 * Listen for clicks outside of an element.
 *
 * @see https://vueuse.org.cn/onClickOutside
 * @param target
 * @param handler
 * @param options
 */
export declare function onClickOutside<T extends OnClickOutsideOptions>(
  target: MaybeElementRef,
  handler: OnClickOutsideHandler<{
    detectIframe: T["detectIframe"]
  }>,
  options?: T,
): () => void

来源

来源演示文档

贡献者

Anthony Fu
sibbng
Anthony Fu
wheat
Onion-L
Matej Černý
不见月
Doctorwu
Rory King
糠帅傅
Chestnut
vaakian X
Fiad
Young
Gavin
webfansplz
Jelf
JserWang
Alex Kozack

变更日志

v11.1.0 于 2024 年 9 月 16 日
9e598 - 修复: 改善跨浏览器兼容性 (#4185)
aa5e3 - 修复: 使 ignore 接受响应式值 (#4211)
v10.6.0 于 2023 年 11 月 9 日
69851 - 修复:调整 shouldListen 处理时序 (#3503)
v10.3.0 于 2023/7/30
9091e - 修复:修复 iOS 上 html 元素的外部点击问题 (#3252)
v10.2.0 于 2023/6/16
2c66e - 修复:确保在 Firefox 中捕获 iframe 的焦点 (#3066)
v9.11.0 于 2023/1/17
d5321 - 修复(组件):将 defineComponent 标记为纯函数 (#2623)
v9.8.0 于 2022/12/20
7b3db - 功能:允许为忽略列表使用选择器字符串 (#2439)
12e21 - 修复:在键盘点击上应用忽略列表 (#2438)
v9.6.0 于 2022/11/22
ff96d - 修复:如果 click 事件由按键触发,则调用处理程序 (#2426)
v9.5.0 于 2022/11/9
f78c4 - 修复:访问正确的 document (#2404)
c913b - 功能:在组件中支持选项 (#2391)
v9.3.0 于 2022/9/26
5a976 - 功能:为指令添加 bubble 修饰符 (#2183)
a3742 - 修复:将忽略逻辑放在 pointerdown 事件上 (#2198)

根据 MIT 许可证发布。