Skip to content

useAbs

类别
导出体积
115 B
依赖包
@vueuse/math
上次更改
3 minutes ago

响应式 Math.abs

用法

ts
import { useAbs } from '@vueuse/math'

const value = ref(-23)
const absValue = useAbs(value) // Ref<23>

类型声明

typescript
/**
 * 响应式 `Math.abs`。
 *
 * @see https://vueuse.org/useAbs
 */
export declare function useAbs(
  value: MaybeRefOrGetter<number>,
): ComputedRef<number>

源码

源码文档

贡献者

Anthony Fu
一纸忘忧
Anthony Fu
Ayaka Rizumu

更新日志

v10.0.0-beta.4 on 4/13/2023
4d757 - feat(types)!: rename MaybeComputedRef to MaybeRefOrGetter
0a72b - feat(toValue): rename resolveUnref to toValue