Skip to content

toReactive

Category
Export Size
242 B
Last Changed
8 months ago

Converts ref to reactive. Also made possible to create a "swapable" reactive object.

This function uses Proxy

It is NOT supported by IE 11 or below.

Usage

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

const refState = ref({ foo: 'bar' })

console.log(refState.value.foo) // => 'bar'

const state = toReactive(refState) // <--

console.log(state.foo) // => 'bar'

refState.value = { bar: 'foo' }

console.log(state.foo) // => undefined
console.log(state.bar) // => 'foo'

Type Declarations

typescript
/**
 * Converts ref to reactive.
 *
 * @see https://vueuse.org/toReactive
 * @param objectRef A ref of object
 */
export declare function toReactive<T extends object>(
  objectRef: MaybeRef<T>,
): UnwrapNestedRefs<T>

Source

SourceDocs

Contributors

Anthony Fu
三咲智子 Kevin Deng
丶远方

Changelog

v10.3.0 on 7/30/2023
17a72 - fix(reactiveComputed): unwrap reactive type (#3215)

Released under the MIT License.