Skip to content

toValue ​

Category
Export Size
92 B
Last Changed
5 months ago
Alias
resolveUnref
Related

Get the value of value/ref/getter.

Usage ​

ts
import { toValue } from '@vueuse/core'

const foo = ref('hi')

const a = toValue(0) // 0
const b = toValue(foo) // 'hi'
const c = toValue(() => 'hi') // 'hi'
import { toValue } from '@vueuse/core'

const foo = ref('hi')

const a = toValue(0) // 0
const b = toValue(foo) // 'hi'
const c = toValue(() => 'hi') // 'hi'

Source ​

Source • Docs

Contributors ​

Anthony Fu

Changelog ​

v10.0.0-beta.4 on 4/13/2023
4d757 - feat(types)!: rename MaybeComputedRef to MaybeRefOrGetter
0a72b - feat: rename resolveUnref to toValue
v8.8.0 on 7/6/2022
29fd5 - feat(resolveRef): new function (#1743)

Released under the MIT License.