Skip to content

useAbs

Category
Export Size
145 B
Package
@vueuse/math
Last Changed
3 hours ago

响应式 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>

Source

SourceDocs

Contributors

jorshen

Changelog

No recent changes

Released under the MIT License.