reactiveComputed

reactiveComputed

計算されたリアクティブオブジェクト。computedref を返す代わりに、reactiveComputed はリアクティブオブジェクトを返します。

使用法

import { reactiveComputed } from '@vueuse/core'

const state = reactiveComputed(() => {
  return {
    foo: 'bar',
    bar: 'baz',
  }
})

state.bar // 'baz'