Abdelrahman Awad

Results 187 comments of Abdelrahman Awad

At the moment you can only have field-level or form-level validation. But not both due to the versatility of the validation rules. You can specify rules in `yup` or `zod`...

Looks like this happens if you set the values during `setup`, if we defer the setting till, say after `mounted` then it works as expected. ```ts onMounted(() => { form.setValues({...

The `toTypedSchema` doesn't play well at the moment with defaults, parsing and transforming logic. It is planned that we will need to introduce another `useMultiStepForm` composable that would handle this...

Hey, I looked at this and have a few thoughts. The main thing to note is `v-text-input` does not emit the value as a number. So vee-validate takes whatever value...

You could in theory throw in `onUpdate:modelValue` in the props and do the casting yourself. ```ts const age = defineComponentBinds('age', (state) => ({ props: { 'error-messages': state.errors, 'onUpdate:modelValue': e =>...

I have been on the lookout for a good DnD lib with little luck in the Vue.js ecosystem. I would love to see this adopted for Vue.js with the new...

Hi, you could take a look at how [`cache` plugin is implemented](https://github.com/logaretm/villus/blob/main/packages/villus/src/cache.ts) and swap the localstorage with indexed db calls. Let me know if you need further guidance. Perhaps the...

Interesting, I didn't expect people to modify stuff other than the headers on the fly but that's a good way to do localization actually. I will think of something, I...

They should be working as of 3.4, which version are you on?

Create a repo where this is visible and I will take a look.