Abdelrahman Awad

Results 177 comments of Abdelrahman Awad

The `initialValue` on `useField` has priority over anything defined on the form. This is intended unfortunately. There is no good way to satisfy both cases, it is a 50/50 toss...

There is a limitation on how well detecting `required` works because we analyze the schema initially and on subsequent changes but not during validations which will affect this. I think...

The `@vee-validate/rules` exposes `all` which you can import rather than doing a star import.

it is possible that it is getting confused by the `MaybeRefOrGetter` thrown in there. I didn't encounter this in the tests nor in my daily usage of this. Can you...

Can you set up a minimal reproduction for this? I believe the docs already have an example or two for multi-step forms where this isn't an issue.

I did a similar thing in other projects, should we add a playground vite Vue app to the `packages`? would that be fine? What would you like to have in...

> since the playground wouldn't be published to npm That's not going to be an issue, we can exclude it just like with the `shared` pkg. > To make things...

Where did that state originate form? `Vue-apollo`?

I see, we can't use `structuredClone` because it will crash if someone has a computed or a ref inside their objects since it does not support proxies. I will check...