Skip to content

useArrayFind

类别
导出体积
137 B
上次更改
2 months ago

响应式 Array.find

用法

ts
import { 
useArrayFind
} from '@vueuse/core'
const
list
= [
ref
(1),
ref
(-1),
ref
(2)]
const
positive
=
useArrayFind
(
list
,
val
=>
val
> 0)
// positive.value: 1

与响应式数组一起使用

ts
import { 
useArrayFind
} from '@vueuse/core'
const
list
=
reactive
([-1, -2])
const
positive
=
useArrayFind
(
list
,
val
=>
val
> 0)
// positive.value: undefined
list
.
push
(1)
// positive.value: 1

类型声明

ts
export type 
UseArrayFindReturn
<
T
= any> =
ComputedRef
<
T
| undefined>
/** * 响应式 `Array.find` * * @see https://vueuse.org/useArrayFind * @param list - 被调用的数组。 * @param fn - 用于测试每个元素的函数。 * * @returns 数组中满足提供的测试函数的第一个元素。否则,返回 undefined。 * * @__NO_SIDE_EFFECTS__ */ export declare function
useArrayFind
<
T
>(
list
:
MaybeRefOrGetter
<
MaybeRefOrGetter
<
T
>[]>,
fn
: (
element
:
T
,
index
: number,
array
:
MaybeRefOrGetter
<
T
>[]) => boolean,
):
UseArrayFindReturn
<
T
>

源码

源码文档

贡献者

一纸忘忧
Anthony Fu
Anthony Fu
SerKo
Michael Cozzolino
Robin
IlyaL
vaakian X
Levi (Nguyễn Lương Huy)
XLor

更新日志

d32f8 - refactor: add @__NO_SIDE_EFFECTS__ annotations to all pure functions (#4907)
43903 - fix(UseArrayFindReturn): Missing template type (#4715)
c1d6e - feat(shared): ensure return types exists (#4659)
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)