useAbs
响应式 Math.abs
。
用法
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>