Skip to content

useMin

Category
Export Size
172 B
Package
@vueuse/math
Last Changed
7 months ago

Reactive Math.min.

Usage

ts
import { 
useMin
} from '@vueuse/math'
const
array
=
ref
([1, 2, 3, 4])
const
min
=
useMin
(
array
) // Ref<1>
ts
import { 
useMin
} from '@vueuse/math'
const
a
=
ref
(1)
const
b
=
ref
(3)
const
min
=
useMin
(
a
,
b
, 2) // Ref<1>

Type Declarations

ts
export declare function 
useMin
(
array
:
MaybeRefOrGetter
<
MaybeRefOrGetter
<number>[]>,
):
ComputedRef
<number>
export declare function
useMin
(
...
args
:
MaybeRefOrGetter
<number>[]
):
ComputedRef
<number>

Source

SourceDocs

Contributors

Anthony Fu
Anthony Fu
SerKo
IlyaL
Ted Xu

Changelog

d32f8 - refactor: add @__NO_SIDE_EFFECTS__ annotations to all pure functions (#4907)
7432f - feat(types): deprecate MaybeRef and MaybeRefOrGetter in favor of Vue's native (#4636)
0a9ed - feat!: drop Vue 2 support, optimize bundles and clean up (#4349)