Vue props validation logic extracted for nested validation in object and arrays.
npm install vue-props-validation
You can write validations for object attributes and array elements in the Vue syntax way using the validator attribute. You can also validate any other object or array outside vue props.
import {objectValidator} from 'vue-props-validation';
props: {
email: String,
user: {
type: Object,
validator: objectValidator({
id: Number,
firstName: String,
lastName: {type: String, required: false},
age: Number,
}),
},
}
import {arrayValidator} from 'vue-props-validation';
props: {
names: {
type: Array,
validator: arrayValidator(String),
},
emails: {
type: Array,
validator: arrayValidator({
type: String,
validator: email => email.includes('@'),
}),
},
}
You can nest validators as much as you want.
import {arrayValidator, objectValidator} from 'vue-props-validation';
props: {
animals: {
type: Array,
validator: arrayValidator({
type: Object,
validator: objectValidator({
id: [String, Number],
name: String,
age: Number,
isCat: Boolean,
vaccinationDates: {
type: Array,
required: false,
validator: arrayValidator([Date, String, Number]),
}
}),
}),
},
}
import {arrayValidator, objectValidator} from 'vue-props-validation';
fetch('https://raw.githubusercontent.com/rubnvp/vue-pokedex/master/data/pokemons.json')
.then(response => response.json())
.then(pokemons => {
arrayValidator({ // this will return false and log an error to the console if it fails
type: Object,
validator: objectValidator({
id: Number,
name: String,
types: Array,
}),
})(pokemons);
});
You can enable or disable all validators in order to skip validations in production enviroments and avoid possible performance issues:
// at main.js
import {setConfig} from 'vue-props-validation';
setConfig({enabled: process.env.NODE_ENV !== 'production'});
Also you can choose the log level for validation message errors between:
none
: no logswarn
: logs with console.warnerror
: logs with console.error (by default)throw
: logs in exceptions
// at main.js
import {setConfig} from 'vue-props-validation';
setConfig({logLevel: 'warn'});
You can point to unpkg.com. An object called VueProps with the functions will be added to the global scope.
<script src="https://unpkg.com/vue-props-validation"></script>
Remember that vue validators are not executed in production enviroments. Like in Vue, the type can be any native or custom constructor: String, Number, Boolean, Array, Object, Date, Function, Symbol, BigInt, etc. The attribute default
is not supported in order to avoid mutating props.
- Option for local config to overwrite global config.
- Include a plugin to avoid imports on every component.