useAbs
响应式 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>
Source
贡献者
Anthony Fu
丶远方
Anthony Fu
Ayaka Rizumu
变更日志
v10.0.0-beta.4
on 4/13/20234d757
- feat(types)!: rename MaybeComputedRef
to MaybeRefOrGetter
0a72b
- feat(toValue): rename resolveUnref
to toValue