Skip to content
On this page

useAbs

Reactive Math.abs.

Usage

import { useAbs } from '@vueuse/math'

const value = ref(-23)
const absValue = useAbs(value) // Ref<23>
import { useAbs } from '@vueuse/math'

const value = ref(-23)
const absValue = useAbs(value) // Ref<23>

Type Declarations

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

Source

Category
Package
@vueuse/math
Last Changed
last month

SourceDocs

Contributors

Changelog

v8.9.4 on 7/17/2022
53f4a - feat: new function (#1825)

Released under the MIT License.