Get support for calebporzio/vue-form-state

If you're new to LTH, please see our FAQ for more information on what it is we do.

Support Options

Unfortunately, there are currently no active helpers for this repository on the platform. Until they become available, we reccomend the following actions:

View Open Issues

Take a look to see if anyone else has experienced the same issue as you and if they managed to solve it.

Open an Issue

Make sure to read any relevant guidelines for opening issues on this repo before posting a new issue.

Sponsor directly

Check out the page and see if there are any options to sponsor this project or it's developers directly.

calebporzio/vue-form-state

Vue-Form


A plugin for Vue.js that takes the pain out ajax-heavy web apps. (Heavily inspired from SparkForm in the Laravel Spark source code.)

Installation

NPM

$ npm install vue-form-state

Setup

var Vue = require('vue');
var VueResource = require('vue-resource');
var VueFormState = require('vue-form-state');

Vue.use(VueResource);
Vue.use(VueFormState);

Usage

This should demonstrate the basic usage of VueFormState in a Vue.js component.

vm = new Vue({
	data: {
		form: new Vue.form({
			foo: 'foo',
			bar: 'bar'
		})
	},

	ready: function () {
		// Initialize the data property via get request
		// with data from the server.
		this.form.init('some/url');
	},

	methods: {
		send: function () {
			// Send the data property to the server
			// update the state, and return a promise.
			
			// Post
			this.form.post('some/url');

			// Put
			this.form.put('some/url/1');

			// Delete
			this.form.delete('some/url/1');
		}
	}
})

State Helpers

These are the methods available on your form object. Feel free to use them in your templates for more convenient operations.

form.ready; // Set to true after the init method returns successfully.

form.busy; // Set to true during POST / PUT / DELETE requests.

form.successful; // Set to true after a 200 response from the server.

form.errors.hasErrors(); // Returns true if the form recieved errors from the server.

form.errors.has('someError'); // Get a specific error.

form.errors.all(); // Get an object of all the errors.

form.errors.flatten(); // Get a flattened array of all the errors.

form.errors.get('someError'); // Get a specific error message / array of messages

As always, the source code is the best form of documentation. Take a look at this file for all available methods.

Our Mission

We want to make open source more sustainable. The entire platform was born from this and everything we do is in aid of this.

Interesting Articles

Thank you for checking out LiveTechHelper |
2025 © lth-dev incorporated

p-e622a1a2