Skip to content

useElementByPoint

类别
导出体积
859 B
上次更改
6 months ago

根据点获取响应式元素。

示例

用法

ts
import { 
useElementByPoint
,
useMouse
} from '@vueuse/core'
const {
x
,
y
} =
useMouse
({
type
: 'client' })
const {
element
} =
useElementByPoint
({
x
,
y
})

类型声明

ts
export interface 
UseElementByPointOptions
<
Multiple
extends boolean = false>
extends ConfigurableDocument {
x
:
MaybeRefOrGetter
<number>
y
:
MaybeRefOrGetter
<number>
multiple
?:
MaybeRefOrGetter
<
Multiple
>
immediate
?: boolean
interval
?: "requestAnimationFrame" | number
} export interface
UseElementByPointReturn
<
Multiple
extends boolean = false>
extends Pausable {
isSupported
:
ComputedRef
<boolean>
element
:
ShallowRef
<
Multiple
extends true ? HTMLElement[] : HTMLElement | null
> } /** * 根据点获取响应式元素。 * * @see https://vueuse.org/useElementByPoint * @param options - UseElementByPointOptions */ export declare function
useElementByPoint
<
M
extends boolean = false>(
options
:
UseElementByPointOptions
<
M
>,
):
UseElementByPointReturn
<
M
>

源码

源码演示文档

贡献者

Anthony Fu
一纸忘忧
IlyaL
Anthony Fu
Jelf
wheat
Fernando Fernández
Alex Liu
vaakian X
BaboonKing

更新日志

7432f - feat(types): deprecate MaybeRef and MaybeRefOrGetter in favor of Vue's native (#4636)
59f75 - feat(toValue): deprecate toValue from @vueuse/shared in favor of Vue's native
0a9ed - feat!: drop Vue 2 support, optimize bundles and clean up (#4349)
31b66 - feat: new multiple and interval options (#3089)