Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 349 Bytes

index.md

File metadata and controls

23 lines (16 loc) · 349 Bytes
category
@Math

useMath

Reactive Math methods.

Usage

import { useMath } from '@vueuse/math'

const base = ref(2)
const exponent = ref(3)
const result = useMath('pow', base, exponent) // Ref<8>

const num = ref(2)
const root = useMath('sqrt', num) // Ref<1.4142135623730951>

num.value = 4
console.log(root.value) // 2