
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
vue-laravel-validator
Advanced tools
This plugin handle laravel validation response and simple creating form and posting data.
#install
npm i vue-laravel-validator --save
##Usage javascript file
import Vue from 'vue';
import VueResource from 'vue-resource';
import LaravelValidator from 'vue-laravel-validator';
Vue.use(VueResource);
Vue.use(LaravelValidator);
new Vue({
data(){
return {
form: this.$form({
'user': null, // or Vuex this.user.name eg.
'age': null,
'email': null
})
}
},
methods:{
sendform(){
this.form.post('http://yourlaravel.com/api/save').then((response) => {
console.log('success')
}, (response) => {
console.log('error')
})
}
}
});
template file
<form @submit.prevent="sendForm">
<div class="form-group" :class="{'has-danger': form.$errors.has('name')}">
<label for="name">Name</label>
<input type="text" class="form-control" id="name" placeholder="Name" v-model="form.$fields.name">
<div if="form.$errors.has('name')" class="form-control-feedback">{{form.$errors.get('name')}}</div>
</div>
<div class="form-group" :class="{'has-danger': form.$errors.has('age')}">
<label for="age">Age</label>
<input type="text" class="form-control" id="age" placeholder="age" v-model="form.$fields.age">
<div if="form.$errors.has('age')" class="form-control-feedback">{{form.$errors.get('age')}}</div>
</div>
<div class="form-group" :class="{'has-danger': form.$errors.has('email')}">
<label for="email">Email</label>
<input type="email" class="form-control" id="email" placeholder="email" v-model="form.$fields.email">
<div if="form.$errors.has('email')" class="form-control-feedback">{{form.$errors.get('email')}}</div>
</div>
<button :disabled="form.$busy" type="submit" class="btn btn-primary">Save</button>
</form>
Laravel Validation
public function save(Request $request){
$this->validate($request, [
'name' => 'required|min:3|max:32',
'age' => 'required|numeric|max:99|min:18',
'email' => 'required|email'
]);
}
Title | Type | Description |
---|---|---|
.$busy | Boolean | form proccess status (use loading animation eg.) |
.$errors.get({input}) | `Array | String` |
.$errors.has({input}) | Boolean | get input has error |
.$errors.all() | `Array | String` |
.$fields.{input} | Input | get raw input value (use in template) |
.post(uri) | string | Vue-resource post method |
.put(uri) | string | Vue-resource put method |
.delete(url) | string | Vue-resource delete method |
FAQs
Laravel validation error handler for vuejs
The npm package vue-laravel-validator receives a total of 2 weekly downloads. As such, vue-laravel-validator popularity was classified as not popular.
We found that vue-laravel-validator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.