Valerii Strilets
Valerii Strilets
Or you can use my variant of zod: ```ts export const useZodForm = ( schema: Schema, initialValues: Values ) => { const form = useForm({ initialValues, validationSchema: toFormValidator(schema), }); const...
For yup I'm using this hook: (need to upgrade yup to beta version) ```typescript import { Ref } from 'vue'; import { useField, useForm } from 'vee-validate'; import { ObjectSchema,...
@Aminerman with your permission I want to share my version of vue-kinesis because community wants improvements, so I created [kinesis.letstri.dev](https://kinesis.letstri.dev)
I thing `fetch` should be in another cases. `get` for returning value ```ts const getUser = () => { return fetch('/user').then(res => res.json()); }; const user = await getUser(); console.log(user);...
Have the same problem but with `config` from `@vue-email/compiler`