Skip to content

useMax

类别
导出大小
184 B
@vueuse/math
最近修改
2 days ago

反应性 Math.max

🌐 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>