Skip to content
On this page

useAbs

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

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

SourceDocs

贡献者(Contributors)

日志(Changelog)

No recent changes

Released under the MIT License.