(instance: ComponentInternalInstance | null)
| 102 | } |
| 103 | |
| 104 | export function setCurrentInstance(instance: ComponentInternalInstance | null) { |
| 105 | if (!currentInstanceTracking) return |
| 106 | const prev = currentInstance |
| 107 | prev?.scope.off() |
| 108 | currentInstance = instance |
| 109 | currentInstance?.scope.on() |
| 110 | } |
| 111 | |
| 112 | export type Slot = (...args: any[]) => VNode[] |
| 113 |
no test coverage detected
searching dependent graphs…