Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 309 Bytes

index.md

File metadata and controls

25 lines (17 loc) · 309 Bytes
category
@Math

useMin

Reactive Math.min.

Usage

import { useMin } from '@vueuse/math'

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

const a = ref(1)
const b = ref(3)

const min = useMin(a, b, 2) // Ref<1>