From 9f0b775c76ac0f59d52a8b5b088ababe804c9ffa Mon Sep 17 00:00:00 2001 From: Ingo Renner Date: Wed, 30 Jul 2025 09:25:15 -0700 Subject: [PATCH] Add missing import getCurrentInstance from vue --- src/runtime-utils/render.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime-utils/render.ts b/src/runtime-utils/render.ts index bd524a2fb..da7599e96 100644 --- a/src/runtime-utils/render.ts +++ b/src/runtime-utils/render.ts @@ -1,4 +1,4 @@ -import { Suspense, effectScope, h, nextTick, isReadonly, reactive, unref, defineComponent } from 'vue' +import { Suspense, effectScope, h, nextTick, isReadonly, reactive, unref, defineComponent, getCurrentInstance } from 'vue' import type { ComponentInternalInstance, DefineComponent, SetupContext } from 'vue' import type { RenderOptions as TestingLibraryRenderOptions } from '@testing-library/vue' import { defu } from 'defu'