Category | Reactivity |
---|---|
Export Size | 242 B |
Last Changed | 2 weeks ago |
Converts ref to reactive. Also made possible to create a "swapable" reactive object.
It is NOT supported by IE 11 or below.
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'
/** * 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
© 2019-present Anthony Fu
Licensed under the MIT License.
https://vueuse.org/shared/toReactive/