useRound
Reactive Math.round.
Usage
ts
import { useRound } from '@vueuse/math'
const value = ref(20.49)
const result = useRound(value) // 20Type Declarations
typescript
/**
* Reactive `Math.round`.
*
* @see https://vueuse.org/useRound
*/
export declare function useRound(
value: MaybeRefOrGetter<number>,
): ComputedRef<number>Source
Contributors
Changelog
v10.0.0-beta.4 on 4/13/20234d757 - feat(types)!: rename MaybeComputedRef to MaybeRefOrGetter0a72b - feat(toValue): rename resolveUnref to toValue