reactiveComputed
响应式计算对象。与 computed
返回 ref 不同,reactiveComputed
返回一个响应式对象。
用法
ts
import { reactiveComputed } from '@vueuse/core'
const state = reactiveComputed(() => {
return {
foo: 'bar',
bar: 'baz',
}
})
state.bar // 'baz'
类型声明
typescript
/**
* 计算响应式对象。
*/
export declare function reactiveComputed<T extends object>(
fn: () => T,
): UnwrapNestedRefs<T>
源码
贡献者
Anthony Fu
一纸忘忧
sibbng
Anthony Fu
三咲智子 Kevin Deng
qiang