跳至内容

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
IlyaL
Onion-L
Matej Černý
不见月
Doctorwu
Rory King
糠帅傅
Chestnut
vaakian X
Fiad
Young
Gavin
webfansplz
Jelf
JserWang
Alex Kozack

变更日志

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

在 MIT 许可证下发布。