Skip to content

useAbs ​

Category
Export Size
115 B
Package
@vueuse/math
Last Changed
6 minutes ago

Reactive Math.abs.

Usage ​

ts
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: MaybeRefOrGetter<number>,
): ComputedRef<number>

Source ​

Source • Docs

Contributors ​

Anthony Fu
Anthony Fu
Ayaka Rizumu

Changelog ​

v12.0.0-beta.1 on 11/21/2024
0a9ed - feat!: drop Vue 2 support, optimize bundles and clean up (#4349)
v10.0.0-beta.4 on 4/13/2023
4d757 - feat(types)!: rename MaybeComputedRef to MaybeRefOrGetter
0a72b - feat(toValue): rename resolveUnref to toValue

Released under the MIT License.