On this page
toReactive
Category | Reactivity |
---|---|
Export Size | 242 B |
Last Changed | 2 weeks 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
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
/**
* 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>): T
Source
No recent changes© 2019-present Anthony Fu
Licensed under the MIT License.
https://vueuse.org/shared/toReactive/