Skip to content

useTrunc ​

Category
Export Size
120 B
Package
@vueuse/math
Last Changed
last year

Reactive Math.trunc.

Usage ​

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

const value1 = ref(0.95)
const value2 = ref(-2.34)
const result1 = useTrunc(value1) // 0
const result2 = useTrunc(value2) // -2

Type Declarations ​

typescript
/**
 * Reactive `Math.trunc`.
 *
 * @see https://vueuse.org/useTrunc
 */
export declare function useTrunc(
  value: MaybeRefOrGetter<number>,
): ComputedRef<number>

Source ​

Source • Docs

Contributors ​

Anthony Fu
hanpei

Changelog ​

v10.0.0-beta.4 on 4/13/2023
4d757 - feat(types)!: rename MaybeComputedRef to MaybeRefOrGetter
0a72b - feat(toValue): rename resolveUnref to toValue
v9.0.0-beta.0 on 7/17/2022
d5717 - feat: new function (#1838)

Released under the MIT License.