Skip to content
On this page

useAbs

Category
Export Size
199 B
Package
@vueuse/math
Last Changed
5 months ago

Reactive Math.abs.

Usage

ts
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

typescript
/**
 * 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

SourceDocs

Contributors

Ayaka Rizumu

Changelog

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

Released under the MIT License.