Skip to content

useMax

Category
Export Size
184 B
Package
@vueuse/math
Last Changed
5 months ago

Reactive Math.max.

Usage

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

Type Declarations

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

Source

SourceDocs

Contributors

Anthony Fu
Anthony Fu
SerKo
IlyaL
Ted Xu
Frank Fang

Changelog

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

Released under the MIT License.

END OF YEAR SALE
Get 50% OFF + 2 Premium Bonuses
2 AI Courses
Claim Now
EXTENDED