Skip to content
On this page

useRound

Category
Export Size
200 B
Package
@vueuse/math
Last Changed
7 months ago

Reactive Math.round.

Usage

ts
import { useRound } from '@vueuse/math'

const value = ref(20.49)
const result = useRound(value) // 20
import { useRound } from '@vueuse/math'

const value = ref(20.49)
const result = useRound(value) // 20

Type Declarations

typescript
/**
 * Reactive `Math.round`.
 *
 * @see https://vueuse.org/useRound
 */
export declare function useRound(
  value: MaybeComputedRef<number>
): ComputedRef<number>
/**
 * Reactive `Math.round`.
 *
 * @see https://vueuse.org/useRound
 */
export declare function useRound(
  value: MaybeComputedRef<number>
): ComputedRef<number>

Source

SourceDocs

Contributors

Anthony Fu
webfansplz

Changelog

v8.9.2 on 7/12/2022
62a60 - feat: new function (#1820)

Released under the MIT License.