Skip to content

useAbs ​

Category
Export Size
115 B
Package
@vueuse/math
Last Changed
5 months ago

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>

Source ​

Source • Docs

Contributors ​

Anthony Fu
Ayaka Rizumu

Changelog ​

v10.0.0-beta.4 on 4/13/2023
4d757 - feat(types)!: rename MaybeComputedRef to MaybeRefOrGetter
0a72b - feat(toValue): rename resolveUnref to toValue
v8.9.4 on 7/17/2022
53f4a - feat: new function (#1825)

Released under the MIT License.