vform icon indicating copy to clipboard operation
vform copied to clipboard

Handle Laravel-Vue forms and validation with ease.

Results 12 vform issues
Sort by recently updated
recently updated
newest added

How can we use this in Nuxt 3? Axios won't be in Nuxt 3.

With Laravels new improved validation messages ("The name field is required. (and 1 more error)") it's a nice feature to always have the returned message available for use in AlertError...

Hi, Thanks for this great package. I often used this package for all my projects. I am trying to upload attachment. And I also have array parameter in my requests....

I'm using my form to send data, mostly strings and also a file. ``` data() { return { form: new Form({ serverid: '', name: '', ipaddress: '', port: '', description:...

There's problem on SSR with message `_vm.form.errors.has is not a function` when `async fetch()` is being used on components in Nuxt.

I'm trying to use this in my Nuxt JS project. But its throwing me this error: `Cannot read property 'has' of undefined`

When sending form-data with method PUT, in Laravel request is empty. In this case it is necessary to add to the form-data field `_method='put'` and send data using method POST

Hi thank you for this wonderfull package. i want to know that is thery any way that i can define the type of my Form attributes so it gives me...

``` import { reactive } from 'vue' import Form from 'vform' const form = reactive(new Form({ phone: null, password: null, })); const onSubmit = async () => { const response...

I have been using this pakcage for my vue2 project without nuxt. But I tried to use it in my nuxt3 project. But I couldn't be able to run the...