Skip to content

reactifyObject

reactify 应用于对象

¥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`