Skip to content

useMin

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

反应性 Math.min

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