Skip to content

toValue

Category
Export Size
106 B
Last Changed
4 months ago
Alias
resolveUnref
Related

Get the value of value/ref/getter.

WARNING

Deprecated, use import { toValue } from 'vue' instead.

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'

Type Declarations

typescript
/**
 * Get the value of value/ref/getter.
 *
 * @deprecated use `toValue` from `vue` instead
 */
export declare const toValue: typeof _toValue
/**
 * @deprecated use `toValue` instead
 */
export declare const resolveUnref: typeof _toValue

Source

SourceDocs

Contributors

Anthony Fu
Anthony Fu

Changelog

59f75 - feat: deprecate toValue from @vueuse/shared in favor of Vue's native
0a9ed - feat!: drop Vue 2 support, optimize bundles and clean up (#4349)
4d757 - feat(types)!: rename MaybeComputedRef to MaybeRefOrGetter
0a72b - feat: rename resolveUnref to toValue

Released under the MIT License.