From 8a0850548de4d3e73ad3fe2022b0ade0ef807616 Mon Sep 17 00:00:00 2001 From: David Nahodyl Date: Fri, 7 Jun 2024 15:49:12 -0400 Subject: [PATCH] changed import format to work with Stackblitz --- src/runtime/composables/useForm.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/composables/useForm.ts b/src/runtime/composables/useForm.ts index 33ec144..108c0da 100644 --- a/src/runtime/composables/useForm.ts +++ b/src/runtime/composables/useForm.ts @@ -1,4 +1,4 @@ -import isEqual from "lodash-es/isEqual"; +import { isEqual } from "lodash-es"; import { reactive, watch } from "vue"; import type { NitroFetchRequest } from "nitropack"; import type FormDataConvertible from "~/types/FormDataconvertible";