Vuetify is a popular UI framework for Vue apps.
In this article, we’ll look at how to work with the Vuetify framework.
Form Validation with Vee-Validate
We can validate Vuetify forms with the Vee-Validate library.
For example, we can write:
<template>
<v-container>
<v-row>
<v-col col="12">
<ValidationObserver ref="observer" v-slot="{ validate, reset }">
<form>
<ValidationProvider v-slot="{ errors }" name="Name" rules="required|max:10">
<v-text-field
v-model="name"
:counter="10"
:error-messages="errors"
label="Name"
required
></v-text-field>
</ValidationProvider>
<ValidationProvider v-slot="{ errors }" name="email" rules="required|email">
<v-text-field v-model="email" :error-messages="errors" label="E-mail" required></v-text-field>
</ValidationProvider>
<ValidationProvider v-slot="{ errors }" name="select" rules="required">
<v-select
v-model="select"
:items="items"
:error-messages="errors"
label="Select"
data-vv-name="select"
required
></v-select>
</ValidationProvider>
<ValidationProvider v-slot="{ errors, valid }" rules="required" name="checkbox">
<v-checkbox
v-model="checkbox"
:error-messages="errors"
value="1"
label="Option"
type="checkbox"
required
></v-checkbox>
</ValidationProvider>
<v-btn class="mr-4" @click="submit">submit</v-btn>
<v-btn @click="clear">clear</v-btn>
</form>
</ValidationObserver>
</v-col>
</v-row>
</v-container>
</template>
<script>
import { required, email, max } from "vee-validate/dist/rules";
import {
extend,
ValidationObserver,
ValidationProvider,
setInteractionMode,
} from "vee-validate";
setInteractionMode("eager");
extend("required", {
...required,
message: "{_field_} can not be empty",
});
extend("max", {
...max,
message: "{_field_} may not be greater than {length} characters",
});
extend("email", {
...email,
message: "Email must be valid",
});
export default {
name: "HelloWorld",
components: {
ValidationProvider,
ValidationObserver,
},
data: () => ({
name: "",
email: "",
select: null,
items: ["Item 1", "Item 2", "Item 3", "Item 4"],
checkbox: null,
}),
methods: {
submit() {
this.$refs.observer.validate();
},
clear() {
this.name = "";
this.email = "";
this.select = null;
this.checkbox = null;
this.$refs.observer.reset();
},
},
};
</script>
We wrap the form with the ValidationObserver
component so that we can use the validation features.
Also, we have the ValidationProvider
to wrap our the v-text-field
to let us add validation with Vee-Validate to each field.
rules
sets the rules.
And the rules are defined with the extends
function.
We pass in an object into the 2nd argument with the object to define our validation rules with the error message.
message
has error message.
required
, max
, and email
are objects with the validation rules.
In the components
property, we register the components.
The reset
and validate
methods let us reset the form validation and validate respectively.
Inputs
We can add form inputs with the v-input
component.
For instance, we can write:
<template>
<v-container>
<v-row>
<v-col col="12">
<v-text-field color="success" loading disabled></v-text-field>
</v-col>
</v-row>
</v-container>
</template>
<script>
export default {
name: "HelloWorld",
};
</script>
to add an input with the loading
prop to make it show a progress bar to indicate that it’s loading.
Conclusion
We can add form validation with VeeValidate to a Vuetify form.
Also, we can add an input with the v-input
component.