(obj: any)
| 35 | } |
| 36 | |
| 37 | export function isComponentInstance(obj: any) { |
| 38 | const Vue = getVueConstructor() |
| 39 | return Vue && obj instanceof Vue |
| 40 | } |
| 41 | |
| 42 | export function createSlotProxy(vm: ComponentInstance, slotName: string): Slot { |
| 43 | return ((...args: any) => { |
no test coverage detected
searching dependent graphs…