All files / runtime-core/src apiComputed.ts

100% Statements 4/4
100% Branches 0/0
100% Functions 1/1
100% Lines 4/4

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 884x 84x   84x   23x    
import { computed as _computed } from '@vue/reactivity'
import { isInSSRComponentSetup } from './component'
 
export const computed = ((getterOrOptions: any, debugOptions?: any) => {
  // @ts-ignore
  return _computed(getterOrOptions, debugOptions, isInSSRComponentSetup)
}) as typeof _computed