From dc1979cae1478cf864aab5ea573cc87d070185ce Mon Sep 17 00:00:00 2001 From: Romain Hamel Date: Mon, 31 Jul 2023 16:11:24 +0200 Subject: [PATCH] fix(FormGroup): missing imports (#470) --- src/runtime/components/forms/FormGroup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/components/forms/FormGroup.ts b/src/runtime/components/forms/FormGroup.ts index 2a4f0e56..3b3bf9a3 100644 --- a/src/runtime/components/forms/FormGroup.ts +++ b/src/runtime/components/forms/FormGroup.ts @@ -1,4 +1,4 @@ -import { h, cloneVNode, computed, defineComponent } from 'vue' +import { h, cloneVNode, computed, defineComponent, provide, inject } from 'vue' import type { PropType } from 'vue' import { defu } from 'defu' import { getSlotsChildren } from '../../utils'