Skip to content

Commit

Permalink
fix(Form): fix valibot imports (nuxt#617)
Browse files Browse the repository at this point in the history
  • Loading branch information
romhml authored and Haythamasalama committed Sep 21, 2023
1 parent 611ba14 commit e79d025
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/runtime/components/forms/Form.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import type { ZodSchema } from 'zod'
import type { ValidationError as JoiError, Schema as JoiSchema } from 'joi'
import type { ObjectSchema as YupObjectSchema, ValidationError as YupError } from 'yup'
import type { ObjectSchema as ValibotObjectSchema } from 'valibot'
import { safeParseAsync } from 'valibot'
import type { FormError, FormEvent, FormEventType, FormSubmitEvent, Form } from '../../types/form'
export default defineComponent({
Expand Down Expand Up @@ -218,6 +217,8 @@ async function getValibotError (
state: any,
schema: ValibotObjectSchema<any>
): Promise<FormError[]> {
const { safeParseAsync } = await import('valibot')
const result = await safeParseAsync(schema, state)
if (result.success === false) {
return result.issues.map((issue) => ({
Expand Down

0 comments on commit e79d025

Please sign in to comment.