Back to Vueuse

reactifyObject

packages/shared/reactifyObject/index.md

14.3.0239 B
Original Source

reactifyObject

Apply reactify to an object

Usage

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

const reactifiedConsole = reactifyObject(console)

const a = ref('42')

reactifiedConsole.log(a) // no longer need `.value`